Skill v1.0.1
currentAutomated scan100/1003 files
version: "1.0.1" name: vuepress-plume-markdown description: Help users write markdown files with VuePress Plume theme extensions, including containers, charts, embeds, code features, and all markdown enhancements. Invoke when user writes markdown content or asks about Plume's markdown syntax.
VuePress Plume Markdown Skill
This skill provides assistance with VuePress Plume markdown extensions, charts, embeds, and code features. It helps users write rich content using the features provided by the theme.
When to Invoke
- Writing content in Markdown files
- Using advanced features like containers, code groups, or diagrams
- Embedding media or external content
- Configuring code block features (highlight, focus, diff, etc.)
- Using markdown enhancement syntax
Documentation Sources
Enabling Features
Most markdown extensions need to be enabled in .vuepress/config.ts:
export default defineUserConfig({theme: plumeTheme({markdown: {// Containershint: true, // Info, tip, warning, caution containers (default: true)alert: true, // GitHub-style alerts (default: true)// CodecodeTabs: true, // Code block tabs (default: true)tabs: true, // General tabs (default: true)// Contentannotation: false, // Inline annotationsabbr: false, // Abbreviationsmark: 'eager', // Mark/highlight text (default: 'eager')// LayoutfileTree: true, // File tree container (default: true)flex: false, // Flex layoutcollapse: false, // Collapsible sectionschat: false, // Chat dialogtimeline: false, // Timelinefield: false, // Field containertable: false, // Enhanced table containerdemo: false, // Demo container// Embedspdf: false, // PDF embedbilibili: false, // Bilibili videoyoutube: false, // YouTube videoartPlayer: false, // ArtPlayer videoaudioReader: false, // Audio// Code demoscodepen: false, // CodePencodeSandbox: false, // CodeSandboxjsfiddle: false, // JSFiddlerepl: false, // REPL// Chartschartjs: false, // Chart.jsecharts: false, // EChartsmermaid: false, // Mermaidmarkmap: false, // Markmapplantuml: false, // PlantUMLflowchart: false, // Flowchart// OthernpmTo: false, // npm/yarn/pnpm switchercaniuse: false, // Can I Use embedicon: { provider: 'iconify' }, // Icons (default: iconify)plot: true, // Hidden text (spoiler) (default: true)imageSize: false, // Auto image dimensionsinclude: true, // Include markdown files (default: true)math: { type: 'katex' }, // Math formulas (default: katex)},}),})
Markdown Extensions
Containers
- Abbreviation - Define abbreviations with tooltips
- Annotation - Add inline annotations
- Attributes - Add custom attributes to elements
- Card - Create card-style layouts
- Chat - Simulate chat conversations
- Code Tree - Display file trees alongside code blocks
- Collapse - Create collapsible details/summary blocks
- Container - Custom containers (info, tip, warning, etc.)
- Demo Wrapper - Demo container for examples
- Field - Field/attribute display container
- File Tree - Display file directory structures
- Flex - Create flexible column layouts
- GitHub Alerts - Use GitHub-style alerts
- Icons - Embed icons from Iconify
- Include - Include content from other files
- Mark - Highlight text with ==mark== syntax
- Math - Render mathematical formulas using KaTeX
- NPM To - Switch between npm, yarn, pnpm, etc.
- QR Code - Generate QR codes
- Steps - Create step-by-step guides
- Table - Enhanced table containers
- Tabs - Create tabbed content
- Timeline - Create timelines
Charts
- Chart.js - Embed Chart.js charts
- ECharts - Embed ECharts visualizations
- Flowchart - Create flowcharts
- Markmap - Create mind maps
- Mermaid - Create diagrams using Mermaid
- PlantUML - Create UML diagrams
Embeds
- AcFun Video - Embed AcFun videos
- ArtPlayer - Embed custom videos with ArtPlayer
- Audio Reader - Embed audio clips/pronunciation guides
- Bilibili Video - Embed Bilibili videos
- CodePen - Embed CodePen demos
- CodeSandbox - Embed CodeSandbox projects
- JSFiddle - Embed JSFiddle demos
- PDF Reader - Embed PDF files
- Replit - Embed Replit projects
- YouTube Video - Embed YouTube videos
Code Features
See resources/code-features.md for detailed code block features:
- Code Title -
title="filename.ext"after language - Line Numbers -
:line-numbers,:no-line-numbers,:line-numbers=2 - Line Highlighting -
{1,3,5-7}or// [!code highlight] - Line Focus -
// [!code focus]or// [!code focus:3] - Diff Highlighting -
// [!code ++]and// [!code --] - Warning/Error -
// [!code warning]and// [!code error] - Word Highlight -
// [!code word:keyword]or// [!code word:keyword:2] - Whitespace -
:whitespaceto show tabs/spaces - Collapsed Lines -
:collapsed-linesor:collapsed-lines=10
Standard Markdown Extensions
VuePress Plume supports these standard markdown extensions:
- Tables - GitHub-flavored tables
- Task Lists -
- [ ]and- [x] - Footnotes -
[^1]and[^1]: note - Superscript -
19^th^ - Subscript -
H~2~O - Custom Anchors -
## Title {#custom-anchor} - Alignment -
::: left/center/right - Table of Contents -
[[TOC]]
Code Block Features
Basic Syntax
code content
With Features
// [!code highlight] const example = 'highlighted' // [!code ++] const added = 'new code' // [!code --] const removed = 'old code' // [!code warning] const warning = 'be careful' // [!code error] const error = 'something wrong' // [!code focus] const focused = 'focused line' // [!code word:example] console.log(example)
Language-Specific Comments
Different languages use different comment syntax:
| Language | Highlight | Focus | Diff Add | Diff Remove | |
|---|---|---|---|---|---|
| JS/TS/JSX/TSX | // [!code highlight] | // [!code focus] | // [!code ++] | // [!code --] | |
| Python/Ruby/YAML | # [!code highlight] | # [!code focus] | # [!code ++] | # [!code --] | |
| CSS/SCSS | /* [!code highlight] */ | /* [!code focus] */ | /* [!code ++] */ | /* [!code --] */ | |
| HTML/XML | <!-- [!code highlight] --> | <!-- [!code focus] --> | <!-- [!code ++] --> | <!-- [!code --] --> | |
| Bash/Shell | # [!code highlight] | # [!code focus] | # [!code ++] | # [!code --] | |
| SQL | -- [!code highlight] | -- [!code focus] | -- [!code ++] | -- [!code --] |
Global Configuration
Enable features globally in .vuepress/config.ts:
export default defineUserConfig({theme: plumeTheme({codeHighlighter: {lineNumbers: true, // Enable line numbers globallywhitespace: false, // Show whitespace globallycollapsedLines: false, // Collapse lines globallytheme: { light: 'github-light', dark: 'github-dark' },twoslash: false, // TypeScript twoslash},}),})
When enabled globally, use :no-line-numbers, :no-whitespace, :no-collapsed-lines to disable per block.
Frontmatter
Common frontmatter for markdown files:
---title: Article TitlecreateTime: 2024/01/01 12:00:00permalink: /article/unique-id/tags:-tag1-tag2description: Article description for SEO---
Post-specific Frontmatter
---sticky: true # or number for orderingarticle: true # false to hide from listdraft: true # dev onlycover: /image.jpg # Cover imagecoverStyle:layout: right # left, right, odd-left, odd-right, topratio: '16:9'width: 240compact: false---
Home Page Frontmatter
---pageLayout: homeconfig:-type: herofull: trueeffect: hyper-speedforceDark: truehero:name: Site Nametagline: Taglinetext: Descriptionactions:-text: Get Startedlink: /guide/theme: brand-type: featuresfeatures:-title: Feature 1icon: icon-namedetails: Description-type: image-texttitle: Section Titleimage: /images/feature.svglist:-title: Item 1description: Description-type: text-imagetitle: Section Titleimage: /images/feature.svglist:-title: Item 1description: Description-type: custom---
LLMs txt Markup
When llmstxt is enabled, you can use special markup:
<llm-only> - Content visible only to LLMs
<llm-only>## Section for LLMsThis content only appears in LLM-generated files.</llm-only>
<llm-exclude> - Content hidden from LLMs
<llm-exclude>## Section for humansThis content will not appear in LLM files.</llm-exclude>
Components
Swiper (Carousel)
Requires installing swiper:
npm install swiper
<script setup>import Swiper from 'vuepress-theme-plume/features/Swiper.vue'</script><Swiper :items="['img1.jpg', 'img2.jpg']" />
Props: items, width, height, mode ('banner'|'carousel'|'broadcast'), navigation, effect, delay, speed, loop, pauseOnMouseEnter, swipe