# Simple Markdown Syntax ## Headings ```markdown # Heading 0 ## Heading 1 ### Heading 2 #### Heading 3 ``` ## Font **This is bold font** *This is Italic font* ***This is bold & Italic font*** ~~This is slash font~~ ## Image ![Riho](../_static/riho.jpg) ## Hyperlink [My Link](https://www.google.com) ## List ### Unordered List - row a - row b - row c ### Ordered List 1. row a 2. row b 3. row c ## Table | name | sex | age | | ----- | ---- | ---- | | Pyrad | Male | 18 | ## Reference > This is a reference sentence. > > Good day today ## Math Formula Refer to page: [Typora数学公式汇总(Markdown)](https://zhuanlan.zhihu.com/p/261750408?utm_source=wechat_session) Here is an example $$ x + y = z $$