jsloop
{musings}

Markdown Guide

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
  • Very easy!

Ordered

  1. Lorem ipsum dolor sit amet
  2. Consectetur adipiscing elit
  3. Integer molestie lorem at massa

  4. You can use sequential numbers…
  5. …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
[Blog](https://jsloop.net)

[Blog with title](https://jsloop.net "My blog")

Rendered:

Blog

Blog with title

Images

![Minion](https://octodex.github.com/images/minion.png)
![Stormtroopocat](https://octodex.github.com/images/stormtroopocat.jpg "The Stormtroopocat")

Rendered:

Minion Stormtroopocat