57 lines
768 B
Plaintext
57 lines
768 B
Plaintext
|
+hdr[Beginning,Middle,End]
|
||
|
|
||
|
# T1 _thing_
|
||
|
|
||
|
###### T2
|
||
|
|
||
|
*Bold* _Italic_ _*BoldItalic*_
|
||
|
|
||
|
[Google](https://google.com) Search
|
||
|
|
||
|
~strike~
|
||
|
|
||
|
$\frac{1}{2} \LaTeX$
|
||
|
|
||
|
![Clouds](https://www.metaweather.com/static/img/weather/hc.svg){}
|
||
|
|
||
|
![Generic badge](https://img.shields.io/badge/<SUBJECT>-<STATUS>-<COLOR>.svg){https://shields.io/}
|
||
|
|
||
|
Some `inline code`
|
||
|
|
||
|
=code[go,dracula]
|
||
|
// Code with dracula theme
|
||
|
package main
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
func main() {
|
||
|
fmt.Println("Hello, World")
|
||
|
}
|
||
|
=end[]
|
||
|
|
||
|
=code[go]
|
||
|
// Code with no theme (monokai default)
|
||
|
package main
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
func main() {
|
||
|
fmt.Println("Hello, World")
|
||
|
}
|
||
|
=end[]
|
||
|
|
||
|
$\cancel{test}$
|
||
|
|
||
|
=list[unordered]
|
||
|
. Level 1
|
||
|
Testing
|
||
|
... Level 3
|
||
|
. Back to level 1
|
||
|
=end[]
|
||
|
|
||
|
=list[ordered]
|
||
|
. Level 1
|
||
|
Testing
|
||
|
... Level 3
|
||
|
. Back to level 1
|
||
|
=end[]
|