This is a syntax guide on Markdown formatting for adding comments in this blog. Make your comments beautiful with this guide. The comment theme will appear differently from blog post theme.
Heading
# h1 Heading
## h2 Heading
### h3 Heading
#### h4 Heading
##### h5 Heading
###### h6 Heading
Rendered:
h1 Heading
h2 Heading
h3 Heading
h4 Heading
h5 Heading
h6 Heading
Horizontal Rules
---
Rendered:
Emphasis
**This is bold text**
__This is bold text__
*This is italic text*
_This is italic text_
~~Strikethrough~~
Rendered:
This is bold text
This is bold text
This is italic text
This is italic text
Strikethrough
Blockquotes
> Blockquotes can also be nested...
>> ...by using additional greater-than signs right next to each other...
> > > ...or with spaces between arrows.
Rendered:
Blockquotes can also be nested…
…by using additional greater-than signs right next to each other…
…or with spaces between arrows.
Lists
Unordered
+ Create a list by starting a line with `+`, `-`, or `*`
+ Sub-lists are made by indenting 2 spaces:
- Marker character change forces new list start:
* Ac tristique libero volutpat at
+ Facilisis in pretium nisl aliquet
- Nulla volutpat aliquam velit
+ Very easy!
#### Ordered
1. Lorem ipsum dolor sit amet
2. Consectetur adipiscing elit
3. Integer molestie lorem at massa
1. You can use sequential numbers...
1. ...or keep all the numbers as `1.`
Rendered:
- Create a list by starting a line with
+,-, or* - Sub-lists are made by indenting 2 spaces:
- Marker character change forces new list start:
- Ac tristique libero volutpat at
- Facilisis in pretium nisl aliquet
- Nulla volutpat aliquam velit
- Marker character change forces new list start:
- Very easy!
Ordered
- Lorem ipsum dolor sit amet
- Consectetur adipiscing elit
-
Integer molestie lorem at massa
- You can use sequential numbers…
- …or keep all the numbers as
1.
Code
Inline `code`.
Rendered:
Inline code.
Block code "fences"
```
function greet() {
console.log("Hello world");
}
```
Rendered:
function greet() {
console.log("Hello world");
}
Syntax highlighting
```js
function greet() {
console.log("Hello world");
}
```
Rendered:
function greet() {
console.log("Hello world");
}
Tables
| Option | Description |
| ------ | ----------- |
| data | path to data files to supply the data that will be passed into templates |
| engine | engine to be used for processing templates |
| ext | extension to be used for dest files |
Rendered:
| Option | Description |
|---|---|
| data | path to data files to supply the data that will be passed into templates |
| engine | engine to be used for processing templates |
| ext | extension to be used for dest files |
Links
[Blog](https://jsloop.net)
[Blog with title](https://jsloop.net "My blog")
Rendered:
Images


Rendered:
