Markdown
Markdown Guide
Learn how to format your content using standard Markdown syntax.
A quick little guide on using markdown to format your content. Currently only a few featurs are supported from markdown with the rest being added soon.
Text Formatting
You can make text bold or italic using asterisks.
Markdown Input
formatting.md
**This is bold text***This is italic text****This is bold and italic***Rendered Output
Loading...
Headings
Use hash marks (#) to create headings. The number of hashes creates the heading level (1-6).
Markdown Input
headings.md
# Heading 1## Heading 2### Heading 3#### Heading 4##### Heading 5###### Heading 6Rendered Output
Loading...
Links
Create links by wrapping the text in brackets [] and the URL in parentheses ().
Markdown Input
links.md
[Google](https://google.com)Rendered Output
Loading...
Code
Use backticks for inline code and triple backticks for code blocks.
Markdown Input
code.md
```jsconsole.log("Hello World");```Here is some `inline code`.Rendered Output
Loading...
