Markdown Converter
Editor Usage
Keyboard Shortcuts
| Tab | Insert 4 spaces |
| Tab (selection) | Indent selected lines by 4 spaces |
| Shift+Tab (selection) | Outdent selected lines |
| Ctrl/⌘+B | Toggle bold on selection |
| Ctrl/⌘+I | Toggle italic on selection |
Backtick Shortcuts
Select text and press ` to wrap it in inline code backticks.
Type `` (three backticks) to insert a fenced code block with the cursor placed inside, ready to type.
Smart Lists & Blockquotes
Press Enter at the end of a list item to automatically start the next item. Ordered lists auto-increment the number.
Press Enter on a blockquote line to continue the > prefix on the next line.
Press Enter on an empty list item or blockquote line to exit the structure.
Word Expanders
Type a trigger word then press Space or Tab to expand it. Triggers are case-insensitive.
lorem | Expands to a Lorem Ipsum paragraph |
GitHub Flavored Markdown Reference
Headings
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
Emphasis
**Bold text** or __Bold text__
*Italic text* or _Italic text_
***Bold and italic***
~~Strikethrough~~
Blockquotes
> This is a blockquote.
>
> It can span multiple paragraphs.
>
> > Nested blockquote.
Unordered Lists
- Item one
- Item two
- Nested item
- Nested item
- Item three
* Asterisk also works
+ Plus sign also works
Ordered Lists
1. First item
2. Second item
3. Third item
1. Nested ordered
2. Nested ordered
Task Lists GFM
- [x] Completed task
- [ ] Incomplete task
- [x] Another completed task
Horizontal Rule
---
***
___
Links
[Link text](https://example.com)
[With title](https://example.com "Title")
[Reference link][my-ref]
[my-ref]: https://example.com
Images


![Reference image][img-id]
[img-id]: image.jpg
Inline Code & Code Blocks
Use `backticks` for inline code.
```javascript
const greet = (name) => {
console.log(`Hello, ${name}!`);
};
```
```python
def hello(name):
print(f"Hello, {name}!")
```
Tables GFM
| Header | Header | Header |
|----------|----------|----------|
| Cell | Cell | Cell |
| Cell | Cell | Cell |
Alignment:
| Left | Center | Right |
|:---------|:--------:|---------:|
| text | text | text |
Autolinks GFM
https://example.com becomes a link.
user@example.com becomes a mailto link.
Escaping Special Characters
\# Not a heading
\*Not italic\*
\`Not inline code\`
\[Not a link\](url)
Paragraphs & Line Breaks
Separate text with a blank line to create a new paragraph.
End a line with two or more spaces, then press enter for a line break within a paragraph.