FMHYedit/.vitepress/markdown/emoji.ts

43 lines
1.2 KiB
TypeScript
Raw Normal View History

2024-01-25 16:32:45 +00:00
import { icons as twemoji } from '@iconify-json/twemoji'
import type { MarkdownRenderer } from 'vitepress'
2024-01-24 07:53:57 +00:00
export const defs = {
...Object.fromEntries(
Object.entries(twemoji.icons).map(([key]) => {
2024-01-25 16:32:45 +00:00
return [key, '']
})
)
}
2024-01-24 07:53:57 +00:00
export function emojiRender(md: MarkdownRenderer) {
md.renderer.rules.emoji = (tokens, idx) => {
2024-01-25 16:32:45 +00:00
if (tokens[idx].markup.startsWith('star')) {
return `<span class="i-twemoji-${tokens[idx].markup} starred"></span>`
}
2024-01-25 16:32:45 +00:00
return `<span class="i-twemoji-${tokens[idx].markup}"></span>`
}
2024-01-24 07:53:57 +00:00
}
export function movePlugin(
plugins: { name: string }[],
pluginAName: string,
2024-01-25 16:32:45 +00:00
order: 'before' | 'after',
pluginBName: string
2024-01-24 07:53:57 +00:00
) {
2024-01-25 16:32:45 +00:00
const pluginBIndex = plugins.findIndex((p) => p.name === pluginBName)
if (pluginBIndex === -1) return
2024-01-24 07:53:57 +00:00
2024-01-25 16:32:45 +00:00
const pluginAIndex = plugins.findIndex((p) => p.name === pluginAName)
if (pluginAIndex === -1) return
2024-01-24 07:53:57 +00:00
2024-01-25 16:32:45 +00:00
if (order === 'before' && pluginAIndex > pluginBIndex) {
const pluginA = plugins.splice(pluginAIndex, 1)[0]
plugins.splice(pluginBIndex, 0, pluginA)
2024-01-24 07:53:57 +00:00
}
2024-01-25 16:32:45 +00:00
if (order === 'after' && pluginAIndex < pluginBIndex) {
const pluginA = plugins.splice(pluginAIndex, 1)[0]
plugins.splice(pluginBIndex, 0, pluginA)
2024-01-24 07:53:57 +00:00
}
}