Misc

Rob SOAP Markdown CLI - Windows CLI - Unix Git NodeJS jslint Batch File Animation Tools React JS Sublime Shortcuts
O O

Weather Controls

Time Of Day
Rain
Wind Speed
Wind Direction
Clouds

Misc : Markdown

2017-10-28

Markdown Output

H1

H2

H3

H4

H5
H6

Alt-H1

Alt-H2

italics, with asterisks or underscores

bold, with asterisks or underscores

Combined emphasis with asterisks and underscores

Strikethrough uses two tildes. Scratch this.

  1. First ordered list item
  2. Another item
  • Unordered list can use asterisks
  • Or minuses
  • Or pluses

I'm an inline-style link with title

alt text

var s = "JavaScript syntax highlighting";
alert(s);

Markdown Example

# H1
## H2
### H3
#### H4
##### H5
###### H6

Alt-H1
======

Alt-H2
------

italics, with *asterisks* or _underscores_

bold, with **asterisks** or __underscores__

Combined emphasis with **asterisks and _underscores_**

Strikethrough uses two tildes. ~~Scratch this.~~

1. First ordered list item
2. Another item

* Unordered list can use asterisks
- Or minuses
+ Or pluses

[I'm an inline-style link with title](https://www.google.com "Google's Homepage")

![alt text](https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo Title Text 1")

```javascript
var s = "JavaScript syntax highlighting";
alert(s);