Welcome to Markdown Renderer
This is a markdown renderer with version control!
Features
- Real-time markdown rendering
- Navigation between versions
Bullet Points (use *
or -
)
- Use backticks to show literal characters:
*
, **
, #
- The
*
character won't make italic when wrapped in backticks
- Same with
**
for bold formatting
- Indented sub-point (2 spaces)
Numbered Lists (for sequences)
- Links work like this
- Inline code:
console.log("Hello")
- Horizontal line: use
---
- Indented sub-point (2 spaces)
- Another sub-step
- Another sub-sub-step
Code Blocks
function hello() {
console.log("Hello, World!");
return true;
}
Happy writing!