From deb20fdfca35c64066fe4e375099350dc77ea408 Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Mon, 22 May 2023 15:18:52 -0500 Subject: initial commit --- posts/002-example-syntax.md | 77 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 posts/002-example-syntax.md (limited to 'posts/002-example-syntax.md') diff --git a/posts/002-example-syntax.md b/posts/002-example-syntax.md new file mode 100644 index 0000000..7131d14 --- /dev/null +++ b/posts/002-example-syntax.md @@ -0,0 +1,77 @@ +## Syntax Possiblities + +Please see the [GitHub Flavored Markdown specs](https://github.github.com/gfm/) and +the [parsedown](https://github.com/erusev/parsedown) repository for more specific details on Markdown possiblities. + +--- + +Headings: + +# Heading - Level 1 + +## Heading - Level 2 + +### Heading - Level 3 + +#### Heading - Level 4 + +##### Heading - Level 5 + +###### Heading - Level 6 + +--- + +Formatted Text: + +**Bold text** +*Italics* +~~strikethrough~~ +[a simple link](https://example.com) + +--- + +Blockquotes: + +> # Foo +> bar +> baz + +--- + +Lists: + +1. one +2. two +3. three + 1. sub-bullet + +- unordered one +- unordered two + +--- + +Code Blocks: + +```html + + + + + + Hello, world! + + +

Hello, world!

+ + +``` + +--- + +Tables: + +| foo | bar | +| --- | --- | +| baz | bim | + +--- -- cgit v1.2.3-70-g09d2