Features
Markdown Support
ReplyBox allows you to format comments using Markdown, which is an easy-to-use syntax for styling text on the web. We currently support the following Markdown syntax.
Emphasis
*This text will be italic*
_This will also be italic_
**This text will be bold**
__This will also be bold__
_You **can** combine them_
Links
This is [an example](https://www.getreplybox.com) link.
Any URL (like https://www.getreplybox.com) will be automatically converted into a clickable link.
Lists
Both unordered and ordered lists are supported. You can also nest them.
Unordered
* Item 1
* Item 2
* Item 2a
* Item 2b
Ordered
1. Item 1
1. Item 2
1. Item 3
1. Item 3a
1. Item 3b
Blockquote
Oscar Wilde once said:
> Be yourself; everyone else is already taken.
Code
This is some insanely good JavaScript:
```
alert('No bloatware here!');
```
You can also use inline code, like so:
Look at my sexy `<body>`.
Strikethrough
I am ~~never~~ wrong.
Not Supported
ReplyBox doesn’t currently support images, headings or tables.