跳至主要內容

GFM 警告

小于 1 分钟MarkdownMarkdown警告

主题可以提供 GFM 警告支持。

配置

TS
import { defineUserConfig } from "vuepress";
import { hopeTheme } from "vuepress-theme-hope";

export default defineUserConfig({
  theme: hopeTheme({
    plugins: {
      mdEnhance: {
        // 启用 GFM 警告
        alert: true,
      },
    },
  }),
});







 
 
 
 


演示

注释文字

重要

重要文字

提示

提示文字

注意

注意文字

警告

警告文字

> [!note]
> 注释文字

> [!important]
> 重要文字

> [!tip]
> 提示文字

> [!warning]
> 注意文字

> [!caution]
> 警告文字