mirror of
https://github.com/fmhy/edit.git
synced 2025-07-29 07:12:15 +10:00
58 lines
1.8 KiB
TypeScript
58 lines
1.8 KiB
TypeScript
/**
|
|
* Copyright (c) taskylizard. All rights reserved.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import type { MarkdownRenderer } from 'vitepress'
|
|
import { icons as twemoji } from '@iconify-json/twemoji'
|
|
|
|
export const defs = {
|
|
...Object.fromEntries(
|
|
Object.entries(twemoji.icons).map(([key]) => {
|
|
return [key, '']
|
|
})
|
|
)
|
|
}
|
|
|
|
export function emojiRender(md: MarkdownRenderer) {
|
|
md.renderer.rules.emoji = (tokens, idx) => {
|
|
if (tokens[idx].markup.startsWith('star')) {
|
|
return `<span class="i-twemoji-${tokens[idx].markup} starred"></span>`
|
|
}
|
|
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)
|
|
}
|
|
}
|