Add lists and subsequent link paras to test text

This commit is contained in:
Timur Demin 2020-11-08 00:06:43 +05:00
parent 6ee9efab52
commit 98d6ff6d5f
No known key found for this signature in database
GPG key ID: 9EDF3F9D9286FA20

View file

@ -19,14 +19,24 @@ This is some markdown [text](https://tdem.in). This is some more text.
![This is some image](https://tdem.in/favicon.ico)
[This is some full-blown link.](https://tdem.in/nyaa)
This is some more plain text. More of it!
+ Unordered list item
+ Another list item
* Indented list item.
* Another one.
+ Third.
1. Ordered list item.
2. Another one.
* and another inset list.
* text.
3. Yay.
## Subheading 2
More text here.
## Subheading 3
More text!
> Some weird blockquote. More text.
@ -37,5 +47,5 @@ func main() {
ast := markdown.Parse([]byte(text), parser.NewWithExtensions(parser.CommonExtensions))
spew.Dump(ast)
geminiContent := markdown.Render(ast, gemini.NewRenderer())
fmt.Printf("---\noriginal:\n---\n%s\n---\ngemini:\n---\n%s\n", text, geminiContent)
fmt.Printf("---\noriginal:\n---\n%s---\ngemini:\n---\n%s", text, geminiContent)
}