aboutsummaryrefslogtreecommitdiff
path: root/posts/002-example-syntax.md
diff options
context:
space:
mode:
Diffstat (limited to 'posts/002-example-syntax.md')
-rw-r--r--posts/002-example-syntax.md77
1 files changed, 77 insertions, 0 deletions
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
+<!doctype html>
+<html lang="en">
+<head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <title>Hello, world!</title>
+</head>
+<body>
+<h1>Hello, world!</h1>
+</body>
+</html>
+```
+
+---
+
+Tables:
+
+| foo | bar |
+| --- | --- |
+| baz | bim |
+
+---