Skip to content

Latest commit

 

History

History
63 lines (53 loc) · 903 Bytes

MARKDOWN_EXAMPLES.md

File metadata and controls

63 lines (53 loc) · 903 Bytes

Markdown SYntax Examples

Headers

# h1
## h2
### h3
#### h4
##### h5
###### h6

Renders to:
custom styles

Bold / Italic

**Bold**  
_Italic_  
_**Bold Italic**_  

Renders to:
custom styles

Listings / Enumerations

1. first item
	- sub-item 1
2. second item
	- sub-item 2
	- sub-item 3
3. thrid item
---
- the list goes on..
- ..and on..

Renders to:
custom styles

Checkboxes / TODOs

- [ ] first item  
- [x] second item  
- [ ] third item  
- [x] fourth item

Renders to:
custom styles

Custom Styles

There are custom styles defined in style.css.

! This is an Information
!! Warning
!v Success
!x ERROR

Renders to:
custom styles