|
|
|
@ -24,7 +24,7 @@ import MarkdownIt from 'markdown-it'
|
|
|
|
|
import anchorPlugin from 'markdown-it-anchor'
|
|
|
|
|
import attrsPlugin from 'markdown-it-attrs'
|
|
|
|
|
import { full as emojiPlugin } from 'markdown-it-emoji'
|
|
|
|
|
import type { BuiltinTheme, Highlighter } from 'shiki'
|
|
|
|
|
import type { BuiltinLanguage, BuiltinTheme, Highlighter } from 'shiki'
|
|
|
|
|
import type { Logger } from 'vite'
|
|
|
|
|
import { containerPlugin, type ContainerOptions } from './plugins/containers'
|
|
|
|
|
import { gitHubAlertsPlugin } from './plugins/githubAlerts'
|
|
|
|
@ -81,10 +81,10 @@ export interface MarkdownOptions extends Options {
|
|
|
|
|
*/
|
|
|
|
|
theme?: ThemeOptions
|
|
|
|
|
/**
|
|
|
|
|
* Languages for syntax highlighting.
|
|
|
|
|
* Custom languages for syntax highlighting or pre-load built-in languages.
|
|
|
|
|
* @see https://shiki.style/languages
|
|
|
|
|
*/
|
|
|
|
|
languages?: LanguageInput[]
|
|
|
|
|
languages?: (LanguageInput | BuiltinLanguage)[]
|
|
|
|
|
/**
|
|
|
|
|
* Custom language aliases.
|
|
|
|
|
*
|
|
|
|
|