mirror of
https://github.com/fmhy/edit.git
synced 2026-01-29 23:31:12 +11:00
feat(theme): replace with twemojis
This commit is contained in:
parent
4cead6f935
commit
0e69461b59
4 changed files with 56 additions and 2 deletions
39
.vitepress/markdown/emoji.ts
Normal file
39
.vitepress/markdown/emoji.ts
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
import { icons as twemoji } from "@iconify-json/twemoji";
|
||||
import type { MarkdownRenderer } from "vitepress";
|
||||
|
||||
export const defs = {
|
||||
...Object.fromEntries(
|
||||
Object.entries(twemoji.icons).map(([key]) => {
|
||||
return [key, ""];
|
||||
}),
|
||||
),
|
||||
};
|
||||
|
||||
export function emojiRender(md: MarkdownRenderer) {
|
||||
md.renderer.rules.emoji = (tokens, idx) => {
|
||||
return `<span class="i-twemoji-${tokens[idx].markup}"></span>`;
|
||||
};
|
||||
}
|
||||
|
||||
export function movePlugin(
|
||||
plugins: { name: string }[],
|
||||
pluginAName: string,
|
||||
order: "before" | "after",
|
||||
pluginBName: string,
|
||||
) {
|
||||
const pluginBIndex = plugins.findIndex((p) => p.name === pluginBName);
|
||||
if (pluginBIndex === -1) return;
|
||||
|
||||
const pluginAIndex = plugins.findIndex((p) => p.name === pluginAName);
|
||||
if (pluginAIndex === -1) return;
|
||||
|
||||
if (order === "before" && pluginAIndex > pluginBIndex) {
|
||||
const pluginA = plugins.splice(pluginAIndex, 1)[0];
|
||||
plugins.splice(pluginBIndex, 0, pluginA);
|
||||
}
|
||||
|
||||
if (order === "after" && pluginAIndex < pluginBIndex) {
|
||||
const pluginA = plugins.splice(pluginAIndex, 1)[0];
|
||||
plugins.splice(pluginBIndex, 0, pluginA);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue