diff options
Diffstat (limited to 'testdata/src/index.md')
| -rw-r--r-- | testdata/src/index.md | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/testdata/src/index.md b/testdata/src/index.md new file mode 100644 index 0000000..757972f --- /dev/null +++ b/testdata/src/index.md @@ -0,0 +1,59 @@ +--- +title: Index +description: Some Markdown +keywords: + - foo + - bar + - baz +publication_time: 2019-01-01T00:00:00Z +author: John Doe +--- +# Index + +This is some Markdown. + +1. foo +2. bar +3. baz + +**bold**, *italic*, `code`, [link](https://example.com), ~~strikethrough~~. + +> blockquote +> blah blah blah + +## Subheading +### Subsubheading +#### Subsubsubheading +##### Subsubsubsubheading +###### Subsubsubsubsubheading + +| foo | bar | baz | +| --- | --- | --- | +| 1 | 2 | 3 | +| 4 | 5 | 6 | +| 7 | 8 | 9 | + +```go +package main + +import "fmt" + +func main() { + fmt.Println("Hello, world!") +} +``` + +- foo +- bar +- baz + + qux + +Did you know that `foo` is a thing?[^1] +And that `bar` is a thing?[^2] + +[^1]: foo is a thing. +[^2]: bar is a thing. + +2^3 = 8 + +H~2~O |
