Markdown Basics
eziwiki supports full GitHub Flavored Markdown (GFM). This guide covers all the syntax you need.
Headings
markdown
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6Text Formatting
markdown
**Bold text**
_Italic text_
**_Bold and italic_**
~~Strikethrough~~
`Inline code`Bold text
Italic text
Bold and italic
Strikethrough
Inline code
Lists
Unordered Lists
markdown
- 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
markdown
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
markdown
- [x] Completed task
- [ ] Incomplete task
- [ ] Another task- Completed task
- Incomplete task
- Another task
Links
markdown
[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
markdown

Code Blocks
Inline Code
markdown
Use `const` instead of `var` in JavaScript.Use const instead of var in JavaScript.
Code Blocks with Syntax Highlighting
markdown
```javascript
function greet(name) {
return `Hello, ${name}!`;
}
```javascript
function greet(name) {
return `Hello, ${name}!`;
}See Code Blocks for more details.
Blockquotes
markdown
> This is a blockquote.
> It can span multiple lines.
>
> > Nested blockquoteThis is a blockquote. It can span multiple lines.
Nested blockquote
Tables
markdown
| 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
markdown
| Left | Center | Right |
| :--- | :----: | ----: |
| L1 | C1 | R1 |
| L2 | C2 | R2 || Left | Center | Right |
|---|---|---|
| L1 | C1 | R1 |
| L2 | C2 | R2 |
Horizontal Rules
markdown
---
---
---HTML in Markdown
You can use HTML tags in Markdown:
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:
markdown
\*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:
markdown
First line
Second lineOr use a blank line for a paragraph break:
markdown
First paragraph
Second paragraphFootnotes
markdown
Here's a sentence with a footnote[^1].
[^1]: This is the footnote content.Emoji
Use emoji shortcodes:
markdown
:smile: :heart: :rocket: :tada:Or use Unicode emoji directly:
markdown
š ā¤ļø š šš ā¤ļø š š
Best Practices
Use Descriptive Link Text
markdown
ā
Good: [Read the installation guide](/getting-started/installation)
ā Bad: [Click here](/getting-started/installation)Keep Lines Short
Break long lines for better readability:
markdown
ā
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
markdown
ā
Good:
- Item 1
- Item 2
- Item 3
ā Bad:
- Item 1
* Item 2
- Item 3Add Alt Text to Images
markdown
ā
Good: 
ā Bad: 