AtlatestRepositorysigil-markdown
sigil-markdown / tree / bench / corpuselements.md
1
# H1 Heading2
## H2 Heading3
### H3 Heading4
#### H4 Heading5
##### H5 Heading6
###### H6 Heading8
Paragraph one with plain text and nothing special at all here folks.10
Paragraph two spanning11
multiple source lines that12
should join with spaces.14
- unordered a15
- unordered b16
- unordered c18
* star bullet a19
* star bullet b21
+ plus bullet a22
+ plus bullet b24
1. ordered one25
2. ordered two26
3. ordered three28
> blockquote line one29
> blockquote line two31
```python32
def hello():33
return "world"34
```36
```37
plain fence no lang38
second line39
```41
indented code line one42
indented code line two44
| Col A | Col B | Col C |45
|-------|:-----:|------:|46
| a1 | b1 | c1 |47
| a2 | b2 | c2 |49
---51
***53
___55
Final paragraph after rules.