-
Notifications
You must be signed in to change notification settings - Fork 404
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
28 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,123 +15,129 @@ Waline provides a series of emoji presets that can be used out of box. You can a | |
- Alus | ||
|
||
```http | ||
https://unpkg.com/@waline/emojis@1.1.0/alus | ||
https://unpkg.com/@waline/emojis@1.2.0/alus | ||
``` | ||
|
||
- Bmoji | ||
|
||
```http | ||
https://unpkg.com/@waline/emojis@1.1.0/bmoji | ||
https://unpkg.com/@waline/emojis@1.2.0/bmoji | ||
``` | ||
|
||
- Bilibili | ||
|
||
```http | ||
https://unpkg.com/@waline/emojis@1.1.0/bilibili | ||
https://unpkg.com/@waline/emojis@1.2.0/bilibili | ||
``` | ||
|
||
|
||
```http | ||
https://unpkg.com/@waline/emojis@1.1.0/qq | ||
https://unpkg.com/@waline/emojis@1.2.0/qq | ||
``` | ||
|
||
- Tieba | ||
|
||
```http | ||
https://unpkg.com/@waline/emojis@1.1.0/tieba | ||
https://unpkg.com/@waline/emojis@1.2.0/tieba | ||
``` | ||
|
||
- Twemoji | ||
|
||
- Emoji: | ||
|
||
```http | ||
https://unpkg.com/@waline/emojis@1.1.0/tw-emoji | ||
https://unpkg.com/@waline/emojis@1.2.0/tw-emoji | ||
``` | ||
|
||
::: details Others presets | ||
|
||
- Full: (Not recommended) | ||
|
||
```http | ||
https://unpkg.com/@waline/emojis@1.1.0/tw | ||
https://unpkg.com/@waline/emojis@1.2.0/tw | ||
``` | ||
|
||
- Body: | ||
|
||
```http | ||
https://unpkg.com/@waline/emojis@1.1.0/tw-body | ||
https://unpkg.com/@waline/emojis@1.2.0/tw-body | ||
``` | ||
|
||
- Food: | ||
|
||
```http | ||
https://unpkg.com/@waline/emojis@1.1.0/tw-food | ||
https://unpkg.com/@waline/emojis@1.2.0/tw-food | ||
``` | ||
|
||
- Natural: | ||
|
||
```http | ||
https://unpkg.com/@waline/emojis@1.1.0/tw-natural | ||
https://unpkg.com/@waline/emojis@1.2.0/tw-natural | ||
``` | ||
|
||
- Object: | ||
|
||
```http | ||
https://unpkg.com/@waline/emojis@1.1.0/tw-object | ||
https://unpkg.com/@waline/emojis@1.2.0/tw-object | ||
``` | ||
|
||
- Symbol: | ||
|
||
```http | ||
https://unpkg.com/@waline/emojis@1.1.0/tw-symbol | ||
https://unpkg.com/@waline/emojis@1.2.0/tw-symbol | ||
``` | ||
|
||
- People: | ||
|
||
```http | ||
https://unpkg.com/@waline/emojis@1.1.0/tw-people | ||
https://unpkg.com/@waline/emojis@1.2.0/tw-people | ||
``` | ||
|
||
- Sport: | ||
|
||
```http | ||
https://unpkg.com/@waline/emojis@1.1.0/tw-sport | ||
https://unpkg.com/@waline/emojis@1.2.0/tw-sport | ||
``` | ||
|
||
- Time: | ||
|
||
```http | ||
https://unpkg.com/@waline/emojis@1.1.0/tw-time | ||
https://unpkg.com/@waline/emojis@1.2.0/tw-time | ||
``` | ||
|
||
- Travel: | ||
|
||
```http | ||
https://unpkg.com/@waline/emojis@1.1.0/tw-travel | ||
https://unpkg.com/@waline/emojis@1.2.0/tw-travel | ||
``` | ||
|
||
- Weather: | ||
|
||
```http | ||
https://unpkg.com/@waline/emojis@1.1.0/tw-weather | ||
https://unpkg.com/@waline/emojis@1.2.0/tw-weather | ||
``` | ||
|
||
- Flag: | ||
|
||
```http | ||
https://unpkg.com/@waline/emojis@1.1.0/tw-flag | ||
https://unpkg.com/@waline/emojis@1.2.0/tw-flag | ||
``` | ||
|
||
::: | ||
|
||
|
||
```http | ||
https://unpkg.com/@waline/emojis@1.1.0/weibo | ||
https://unpkg.com/@waline/emojis@1.2.0/weibo | ||
``` | ||
|
||
- Soul knight Emoji | ||
|
||
```http | ||
https://unpkg.com/@waline/[email protected]/soul-emoji | ||
``` | ||
|
||
::: warning | ||
|
||
Waline DO NOT have any copyright of above emojis, use them at your own risk. | ||
|
@@ -149,10 +155,10 @@ Waline DO NOT have any copyright of above emojis, use them at your own risk. | |
el: '#waline', | ||
serverURL: '<YOUR SERVER URL>', | ||
// Set emoji to Weibo and Bilibili | ||
// Set emoji to Weibo and Bmoji | ||
emoji: [ | ||
'//unpkg.com/@waline/emojis@1.1.0/weibo', | ||
'//unpkg.com/@waline/emojis@1.1.0/bilibili', | ||
'//unpkg.com/@waline/emojis@1.2.0/weibo', | ||
'//unpkg.com/@waline/emojis@1.2.0/bmoji', | ||
], | ||
}); | ||
</script> | ||
|