Skip to content

Commit

Permalink
Merge branch 'main' into cf-workers-deno
Browse files Browse the repository at this point in the history
  • Loading branch information
KnorpelSenf authored Mar 25, 2023
2 parents cdd41a8 + fd8800a commit 87ea1a2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion site/docs/.vuepress/components/ThankYou.vue
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ load();
<img v-bind:alt="contributor.login" v-bind:src="contributor.photo" />
<p>
{{ props.s[0] }}<span>{{ contributor.name }}</span
>{{ props.s[2] }}
>{{ contributor.name.toLowerCase() == "knorpelsenf" ? (props.s[3] ?? props.s[2]) : props.s[2] }}
</p>
</a>
</template>
Expand Down
2 changes: 1 addition & 1 deletion site/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ Works! :tada:
---

<ClientOnly>
<ThankYou :s="['Thank you, ', 'Someone', ', for being a contributor to grammY.']" />
<ThankYou :s="['Thank you, ', 'Someone', ', for being a contributor to grammY.', ', for creating grammY.']" />
</ClientOnly>

<div style="font-size: 0.75rem; display: flex; justify-content: center;">
Expand Down
3 changes: 2 additions & 1 deletion site/docs/plugins/emoji.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ But you lose your focus every time you need a new emoji, see:
With this plugin, you just don't stop coding as also you don't lose your focus.
There is also bad-frickin'-laggy systems and/or editors that doesn't like and don't show emojis, so you end up pasting a white square, like this sad-little-squary message: `I'm so happy □`.

This plugin aim to solve these issues, handling for you the hard task of parsing emojis in all systems and letting you only search for them in a easy way (autocomplete is available). Now, the above steps can be reduced to this one:
This plugin aims to solve these issues, handling for you the hard task of parsing emojis in all systems and letting you only search for them in a easy way (autocomplete is available).
Now, the above steps can be reduced to this one:

1. Describe the emoji you want and use it. Right in your code. Simple as that.

Expand Down

0 comments on commit 87ea1a2

Please sign in to comment.