优化:初步优化全局代码样式
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import type { MarkdownOptions } from 'vitepress'
|
||||
import type { MarkdownOptions } from 'vitepress';
|
||||
|
||||
export const markdown: MarkdownOptions = {
|
||||
// Shiki主题, 所有主题参见: https://github.com/shikijs/shiki/blob/main/docs/themes.md
|
||||
@@ -11,9 +11,9 @@ export const markdown: MarkdownOptions = {
|
||||
// 在所有文档的<h1>标签后添加<ArticleMetadata/>组件
|
||||
config: (md) => {
|
||||
md.renderer.rules.heading_close = (tokens, idx, options, env, slf) => {
|
||||
let htmlResult = slf.renderToken(tokens, idx, options, env, slf)
|
||||
if (tokens[idx].tag === 'h1') htmlResult += `\n<ClientOnly><ArticleMetadata v-if="($frontmatter?.aside ?? true) && ($frontmatter?.showArticleMetadata ?? true)" :article="$frontmatter" /></ClientOnly>`
|
||||
return htmlResult
|
||||
let htmlResult = slf.renderToken(tokens, idx, options);
|
||||
if (tokens[idx].tag === 'h1') htmlResult += `\n<ClientOnly><ArticleMetadata v-if="($frontmatter?.aside ?? true) && ($frontmatter?.showArticleMetadata ?? true)" :article="$frontmatter" /></ClientOnly>`;
|
||||
return htmlResult;
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
};
|
Reference in New Issue
Block a user