/
githubmirror
/
marktext
Обзор
Документация
Войти
/
githubmirror
/
marktext
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
packages/muyajs/lib/ui/formatPicker/config.js
69 строк
2 KB
Ran Luo
chore: convert repo to pnpm monorepo (packages/desktop, muyajs, website) (#4302)
29 май 2026, 05:25
Не верифицирован
29 май 2026, 05:25
565bfcd
Код
Авторство
О чём код?
import { isOsx } from '../../config' import strongIcon from '../../assets/pngicon/format_strong/2.png' import emphasisIcon from '../../assets/pngicon/format_emphasis/2.png' import underlineIcon from '../../assets/pngicon/format_underline/2.png' import codeIcon from '../../assets/pngicon/code/2.png' import imageIcon from '../../assets/pngicon/format_image/2.png' import linkIcon from '../../assets/pngicon/format_link/2.png' import strikeIcon from '../../assets/pngicon/format_strike/2.png' import mathIcon from '../../assets/pngicon/format_math/2.png' import highlightIcon from '../../assets/pngicon/highlight/2.png' import clearIcon from '../../assets/pngicon/format_clear/2.png' const COMMAND_KEY = isOsx ? '⌘' : 'Ctrl' const icons = [ { type: 'strong', tooltip: 'Bold', shortcut: `${COMMAND_KEY}+B`, icon: strongIcon }, { type: 'em', tooltip: 'Italic', shortcut: `${COMMAND_KEY}+I`, icon: emphasisIcon }, { type: 'u', tooltip: 'Underline', shortcut: `${COMMAND_KEY}+U`, icon: underlineIcon }, { type: 'del', tooltip: 'Strikethrough', shortcut: `${COMMAND_KEY}+D`, icon: strikeIcon }, { type: 'mark', tooltip: 'Highlight', shortcut: `⇧+${COMMAND_KEY}+H`, icon: highlightIcon }, { type: 'inline_code', tooltip: 'Inline Code', shortcut: `${COMMAND_KEY}+\``, icon: codeIcon }, { type: 'inline_math', tooltip: 'Inline Math', shortcut: `⇧+${COMMAND_KEY}+M`, icon: mathIcon }, { type: 'link', tooltip: 'Link', shortcut: `${COMMAND_KEY}+L`, icon: linkIcon }, { type: 'image', tooltip: 'Image', shortcut: `⇧+${COMMAND_KEY}+I`, icon: imageIcon }, { type: 'clear', tooltip: 'Clear Formatting', shortcut: `⇧+${COMMAND_KEY}+R`, icon: clearIcon } ] export default icons