Markdown Extensions
Markdown extensions including frontmatter, custom containers, tables, anchors, and file includes
Frontmatter
---
title: Page Title
description: Page description for SEO
layout: doc
outline: [2, 3]
---
# Content starts here# {{ $frontmatter.title }}<script setup>
import { useData } from 'vitepress'
const { frontmatter } = useData()
</script>Custom Containers
GitHub-flavored Alerts
Header Anchors
Table of Contents
GitHub-Style Tables
Emoji
File Includes
Code Snippet Import
Code Groups
Math Equations
Image Lazy Loading
Raw Container
Key Points
Last updated
Was this helpful?