Skip to main content

markdown-features

warning alert example!
Useful info in here!

Code Blocks

AS we are using Docusaurus to build this, We can use markdown: to display code in blocks on the page. eg:

```jsx title="src/components/HelloDocusaurus.js"
function HelloDocusaurus() {
return <h1>Hello, Docusaurus!</h1>;
}
```
function HelloDocusaurus() {
return <h1>Hello, Docusaurus!</h1>;
}