Markdown Basics
eziwiki supports full GitHub Flavored Markdown (GFM). This guide covers all the syntax you need.
Headings
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6Text Formatting
**Bold text**
_Italic text_
**_Bold and italic_**
~~Strikethrough~~
`Inline code`Bold text
Italic text
Bold and italic
Strikethrough
Inline code
Lists
Unordered Lists
- Item 1
- Item 2
- Nested item 2.1
- Nested item 2.2
- Item 3- Item 1
- Item 2
- Nested item 2.1
- Nested item 2.2
- Item 3
Ordered Lists
1. First item
2. Second item
3. Third item
1. Nested item 3.1
2. Nested item 3.2- First item
- Second item
- Third item
- Nested item 3.1
- Nested item 3.2
Task Lists
- [x] Completed task
- [ ] Incomplete task
- [ ] Another task- Completed task
- Incomplete task
- Another task
Links
[Link text](https://example.com)
[Link with title](https://example.com 'Title text')
[Internal link](/getting-started/quick-start)Link text Link with title Internal link
Images

Code Blocks
Inline Code
Use `const` instead of `var` in JavaScript.Use const instead of var in JavaScript.
Code Blocks with Syntax Highlighting
```javascript
function greet(name) {
return `Hello, ${name}!`;
}
```function greet(name) {
return `Hello, ${name}!`;
}See Code Blocks for more details.
Blockquotes
> This is a blockquote.
> It can span multiple lines.
>
> > Nested blockquoteThis is a blockquote. It can span multiple lines.
Nested blockquote
Tables
| Header 1 | Header 2 | Header 3 |
| -------- | -------- | -------- |
| Cell 1 | Cell 2 | Cell 3 |
| Cell 4 | Cell 5 | Cell 6 || Header 1 | Header 2 | Header 3 |
|---|---|---|
| Cell 1 | Cell 2 | Cell 3 |
| Cell 4 | Cell 5 | Cell 6 |
Alignment
| Left | Center | Right |
| :--- | :----: | ----: |
| L1 | C1 | R1 |
| L2 | C2 | R2 || Left | Center | Right |
|---|---|---|
| L1 | C1 | R1 |
| L2 | C2 | R2 |
Horizontal Rules
---
---
---HTML in Markdown
You can use HTML tags in Markdown:
<div style="color: red;">
This text is red.
</div>
<details>
<summary>Click to expand</summary>
Hidden content here.
</details>Click to expand
Hidden content here.Escaping Characters
Use backslash to escape special characters:
\*Not italic\*
\[Not a link\]
\`Not code\`*Not italic* [Not a link] `Not code`
Line Breaks
Two spaces at the end of a line create a line break:
First line
Second lineOr use a blank line for a paragraph break:
First paragraph
Second paragraphFootnotes
Here's a sentence with a footnote[^1].
[^1]: This is the footnote content.Emoji
Use emoji shortcodes:
:smile: :heart: :rocket: :tada:Or use Unicode emoji directly:
π β€οΈ π ππ β€οΈ π π
Best Practices
Use Descriptive Link Text
β
Good: [Read the installation guide](/getting-started/installation)
β Bad: [Click here](/getting-started/installation)Keep Lines Short
Break long lines for better readability:
β
Good:
This is a long paragraph that has been broken into
multiple lines for better readability in the source.
β Bad:
This is a long paragraph that goes on and on without any line breaks making it hard to read in the source file.Use Consistent Formatting
β
Good:
- Item 1
- Item 2
- Item 3
β Bad:
- Item 1
* Item 2
- Item 3Add Alt Text to Images
β
Good: 
β Bad: 