Page

VuePress is markdown-centered. Each markdown file inside your project is a standalone page.

Routing

By default, the route path of a page is determined by the relative path of your markdown file.

Assuming this is the directory structure of your markdown files:

  1. └─ docs
  2. ├─ guide
  3. ├─ getting-started.md
  4. └─ README.md
  5. ├─ contributing.md
  6. └─ README.md

Take the docs directory as your sourceDir, e.g. your are running vuepress dev docs command. Then the route paths of your markdown files would be:

Relative PathRoute Path
/README.md/
/contributing.md/contributing.html
/guide/README.md/guide/
/guide/page.md/guide/page.html

Frontmatter

A markdown file could contain a YAMLPage - 图1open in new window frontmatter. The frontmatter must be at the top of the Markdown file and must be wrapped with a couple of triple-dashed lines. Here is a basic example:

  1. ---
  2. lang: en-US
  3. title: Title of this page
  4. description: Description of this page
  5. ---

You must have noticed that those fields are similar with the Site Config in the Config File. You can override lang, title, description, etc., of current page via frontmatter. So you can take frontmatter as page scope config.

Also, VuePress has built-in support for some frontmatter fields, and your theme may have its own special frontmatter, too.

TIP

Check out the Frontmatter Reference for a full list of VuePress built-in frontmatter.

Check out the Default Theme > Frontmatter Reference for the frontmatter of default theme.

Content

The main content of your page is written in Markdown. VuePress will firstly transform your Markdown to HTML code, then treat the HTML code as <template> of Vue SFC.

With the power of markdown-itPage - 图2open in new window and Vue template syntax, the basic Markdown can be extended a lot. Next, check out the Markdown guide for all the extensions of Markdown in VuePress.