Markdown in 5min¶
Introduction to Markdown Language¶
Markdown is a simple language to build web pages. It is easier to read and write than HTML (the language web browsers read) and so we use it to write articles. You can use this reference to help you write posts and pages directly in our repository where the source documents for this wiki are held. See Contributing for more.
Headers¶
Text formatting¶
Links and images¶
[Link text](https://example.com)
[Link with title](https://example.com "Hover title")


Lists¶
Blockquotes¶
Code blocks¶
`javascript
javascript
function hello() {
console.log("Hello, world!");
}
`
Tables¶
text
| Header 1 | Header 2 | Header 3 |
|----------|----------|----------|
| Row 1 | Data | Data |
| Row 2 | Data | Data |
Horizontal rule¶
```text¶
or
or
```
Task lists¶
text
- [x] Completed task
- [ ] Incomplete task
- [ ] Another task
Escaping characters¶
text
Use backslash to escape: \* \_ \# \`
Line breaks¶
```text
End a line with two spaces
to create a line break.
Or use a blank line for a new paragraph. ```