1
0
mirror of https://github.com/oceanprotocol/docs.git synced 2024-11-26 19:49:26 +01:00

update test file

This commit is contained in:
Matthias Kretschmann 2019-07-16 16:37:12 +02:00
parent cfe3287e9e
commit cd43a50d30
Signed by: m
GPG Key ID: 606EEEF3C479A91F

View File

@ -7,11 +7,15 @@ For more complete info, see [John Gruber's original spec](http://daringfireball.
## Headers ## Headers
```text ```markdown
# H1 # H1
## H2 ## H2
### H3 ### H3
#### H4 #### H4
##### H5 ##### H5
``` ```
@ -31,10 +35,10 @@ For more complete info, see [John Gruber's original spec](http://daringfireball.
## Emphasis ## Emphasis
```text ```markdown
Emphasis, aka italics, with *asterisks* or _underscores_. Emphasis, aka italics, with _asterisks_ or _underscores_.
Strong emphasis, aka bold, with **asterisks** or __underscores__. Strong emphasis, aka bold, with **asterisks** or **underscores**.
Combined emphasis with **asterisks and _underscores_**. Combined emphasis with **asterisks and _underscores_**.
@ -51,7 +55,7 @@ Strikethrough uses two tildes. ~~Scratch this.~~
## Lists ## Lists
```text ```markdown
- First unordered list item - First unordered list item
- Second unordered list item - Second unordered list item
- Another item - Another item
@ -73,22 +77,26 @@ Strikethrough uses two tildes. ~~Scratch this.~~
- And another item. - And another item.
Some text that should be aligned with the above item. Some text that should be aligned with the above item.
```text ```markdown
1. First ordered list item 1. First ordered list item
2. Another item 2. Another item
- Unordered sub-list.
- Unordered sub-list.
1. Actual numbers don't matter, just that it's a number 1. Actual numbers don't matter, just that it's a number
1. Ordered sub-list 1. Ordered sub-list
4. And another item. 1. And another item.
Some text that should be aligned with the above item. Some text that should be aligned with the above item.
``` ```
1. First ordered list item 1. First ordered list item
2. Another item 2. Another item
- Unordered sub-list. - Unordered sub-list.
3. Actual numbers don't matter, just that it's a number 3. Actual numbers don't matter, just that it's a number
1. Ordered sub-list 4. Ordered sub-list
4. And another item. 5. And another item.
Some text that should be aligned with the above item. Some text that should be aligned with the above item.
## Links ## Links
@ -147,7 +155,7 @@ Here's our jellyfish, with the title being output as caption:
Code blocks are part of the Markdown spec, but syntax highlighting isn't. However, many renderers -- like Github's and _Markdown Here_ -- support syntax highlighting. Code blocks are part of the Markdown spec, but syntax highlighting isn't. However, many renderers -- like Github's and _Markdown Here_ -- support syntax highlighting.
```text ```markdown
Inline `code` has `back-ticks around` it. Inline `code` has `back-ticks around` it.
``` ```