Markdown

Mr.Hope ... 2021-2-25 Get Started
  • Markdown
About 1 min

Every document page in VuePress is rendered by Markdown.

You need to build your document or blog page by creating and writing Markdown in the corresponding path.

# Markdown introduction

If you are a new learner and don’t know how to write Markdown, please read Markdown Intro and Markdown Demo.

Frontmatter

Frontmatter is a important concept in VuePress. If you don’t know it, you need to read Frontmatter Introduction.

# VuePress enhance

To enrich document writing, VuePress has extended Markdown syntax.

For these extensions, please read Markdown extensions in VuePress.

# Theme enhance

# Superscript and Subscript

19th H2O

# Align

I am center

I am right align

# Footnote

This text has footnote[1].

# Mark

You can mark important words .

# Tasklist

# Flowchart

# Mermaid

# Tex

rωr(yωω)=(yωω){(logy)r+i=1r(1)ir(ri+1)(logy)riωi}\frac {\partial^r} {\partial \omega^r} \left(\frac {y^{\omega}} {\omega}\right) = \left(\frac {y^{\omega}} {\omega}\right) \left\{(\log y)^r + \sum_{i=1}^r \frac {(-1)^i r \cdots (r-i+1) (\log y)^{r-i}} {\omega^i} \right\}

# Code Demo

<h1>Mr.Hope</h1>
<p>Is <span id="very">very</span> handsome</p>
1
2
document.querySelector("#very").addEventListener("click", () => {
  alert("Very handsome!");
});
1
2
3
span {
  color: red;
}
1
2
3

# Presentation


  1. This is footnote content ↩︎