vuepress-plume-markdown
Help users write markdown files with VuePress Plume theme extensions, charts, and embeds.
Install
mkdir -p .claude/skills/vuepress-plume-markdown && curl -L -o skill.zip "https://mcp.directory/api/skills/download/3919" && unzip -o skill.zip -d .claude/skills/vuepress-plume-markdown && rm skill.zipInstalls to .claude/skills/vuepress-plume-markdown
About this skill
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: {
// Containers
hint: true, // Info, tip, warning, caution containers (default: true)
alert: true, // GitHub-style alerts (default: true)
// Code
codeTabs: true, // Code block tabs (default: true)
tabs: true, // General tabs (default: true)
// Content
annotation: false, // Inline annotations
abbr: false, // Abbreviations
mark: 'eager', // Mark/highlight text (default: 'eager')
// Layout
fileTree: true, // File tree container (default: true)
flex: false, // Flex layout
collapse: false, // Collapsible sections
chat: false, // Chat dialog
timeline: false, // Timeline
field: false, // Field container
table: false, // Enhanced table container
demo: false, // Demo container
// Embeds
pdf: false, // PDF embed
bilibili: false, // Bilibili video
youtube: false, // YouTube video
artPlayer: false, // ArtPlayer video
audioReader: false, // Audio
// Code demos
codepen: false, // CodePen
codeSandbox: false, // CodeSandbox
jsfiddle: false, // JSFiddle
repl: false, // REPL
// Charts
chartjs: false, // Chart.js
echarts: false, // ECharts
mermaid: false, // Mermaid
markmap: false, // Markmap
plantuml: false, // PlantUML
flowchart: false, // Flowchart
// Other
npmTo: false, // npm/yarn/pnpm switcher
caniuse: false, // Can I Use embed
icon: { provider: 'iconify' }, // Icons (default: iconify)
plot: true, // Hidden text (spoiler) (default: true)
imageSize: false, // Auto image dimensions
include: 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
```language
code content
```
With Features
```ts title="example.ts":line-numbers {2,4-6}
// [!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 globally
whitespace: false, // Show whitespace globally
collapsedLines: false, // Collapse lines globally
theme: { 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 Title
createTime: 2024/01/01 12:00:00
permalink: /article/unique-id/
tags:
- tag1
- tag2
description: Article description for SEO
---
Post-specific Frontmatter
---
sticky: true # or number for ordering
article: true # false to hide from list
draft: true # dev only
cover: /image.jpg # Cover image
coverStyle:
layout: right # left, right, odd-left, odd-right, top
ratio: '16:9'
width: 240
compact: false
---
Home Page Frontmatter
---
pageLayout: home
config:
- type: hero
full: true
effect: hyper-speed
forceDark: true
hero:
name: Site Name
tagline: Tagline
text: Description
actions:
- text: Get Started
link: /guide/
theme: brand
- type: features
features:
- title: Feature 1
icon: icon-name
details: Description
- type: image-text
title: Section Title
image: /images/feature.svg
list:
- title: Item 1
description: Description
- type: text-image
title: Section Title
image: /images/feature.svg
list:
- title: Item 1
description: 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 LLMs
This content only appears in LLM-generated files.
</llm-only>
<llm-exclude> - Content hidden from LLMs
<llm-exclude>
## Section for humans
This content will not appear in LLM files.
</llm-exclude>
Content truncated.
More by pengzhanbo
View all skills by pengzhanbo →You might also like
flutter-development
aj-geddes
Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.
drawio-diagrams-enhanced
jgtolentino
Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.
godot
bfollington
This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.
ui-ux-pro-max
nextlevelbuilder
"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."
nano-banana-pro
garg-aayush
Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.
fastapi-templates
wshobson
Create production-ready FastAPI projects with async patterns, dependency injection, and comprehensive error handling. Use when building new FastAPI applications or setting up backend API projects.
Related MCP Servers
Browse all serversUnlock powerful Excel automation: read/write Excel files, create sheets, and automate workflows with seamless integratio
Learn how to use Python to read a file and manipulate local files safely through the Filesystem API.
DeepWiki converts deepwiki.com pages into clean Markdown, with fast, secure extraction—perfect as a PDF text, page, or i
Effortlessly manage Google Cloud with this user-friendly multi cloud management platform—simplify operations, automate t
Convert files easily with File Format Converter (Pandoc): transform PDF, HTML, Markdown, HEIC to JPG, JPG to PDF, and mo
Effortlessly deploy static sites with EdgeOne Pages—an easy, scalable alternative to Amazon website hosting for fast, re
Stay ahead of the MCP ecosystem
Get weekly updates on new skills and servers.