--- title: Markdown Features --- Docusaurus supports the [Markdown](https://daringfireball.net/projects/markdown/syntax) syntax and has some additional features. ## Front Matter Markdown documents can have associated metadata at the top called [Front Matter](https://jekyllrb.com/docs/front-matter/): ```md --- id: my-doc title: My document title description: My document description sidebar_label: My doc --- Markdown content ``` ## Markdown links Regular Markdown links are supported using url paths or relative file paths. ```md Let's see how to [Create a page](/create-a-page). ``` ```md Let's see how to [Create a page](./create-a-page.md). ``` Let's see how to [Create a page](./create-a-page.md). ## Markdown images Regular Markdown images are supported. Add an image at `static/img/docusaurus.png` and use this Markdown declaration: ```md  ```  ## Code Blocks Markdown code blocks are supported with Syntax highlighting. ```jsx title="src/components/HelloDocusaurus.js" function HelloDocusaurus() { return (