Added markdown test page in site_sample/.
authorAaron Taylor <ataylor@subgeniuskitty.com>
Sat, 6 Jan 2018 01:28:46 +0000 (17:28 -0800)
committerAaron Taylor <ataylor@subgeniuskitty.com>
Sat, 6 Jan 2018 01:28:46 +0000 (17:28 -0800)
site_sample/index.md [new file with mode: 0644]

diff --git a/site_sample/index.md b/site_sample/index.md
new file mode 100644 (file)
index 0000000..57f362a
--- /dev/null
@@ -0,0 +1,118 @@
+Markdown Test
+=============
+
+This document contains at least one example of each valid markdown element. It is intended as a test for the markdown processor and as a reference for content creation.
+
+---
+
+Code Blocks
+===========
+
+Inline `code blocks` use the backtick key while
+
+    standalone code blocks use
+    four spaces at the start of
+    every line.
+
+---
+
+Headers
+=======
+
+# Header 1
+## Header 2
+### Header 3
+#### Header 4
+##### Header 5
+###### Header 6
+
+Alternate H1
+============
+
+Alternate H2
+------------
+
+---
+
+Text Decorations
+================
+
+Italic emphasis is implemented with *asterisks* or _underscores_.
+
+Bold emphasis uses **double asterisks** or __double underscores__.
+
+These __*can* be__ *combined*.
+
+Strikethroughs use double ~~squigglies~~ tildes.
+
+---
+
+Lists
+=====
+
+1. Lists can be both ordered or unordered.
+  * This includes sublists
+  * and mixed combinations
+2. It is even possible to embed regular paragraphs in a list element.
+
+   They require a leading, blank line and at least one leading space. We have used three spaces here to align the raw markdown.
+
+3. And the list continues after the paragraph.
+2. Note that the raw number is irrelevant; the markdown processor renumbers the list.
+
+---
+
+Links
+=====
+
+Links come in a variety of styles.
+
+* [Inline link](/)
+* [Inline link with title/reftext](/ "home")
+* [Reference with text][REFTEXT]
+* [Reference with number][1]
+* Triangular brackets can also define a link: <http://werc.subgeniuskitty.com>
+
+The link definition can be separate from the declaration.
+
+[REFTEXT]: http://werc.subgeniuskitty.com
+[1]: http://werc.subgeniuskitty.com
+
+---
+
+Images
+======
+
+Inline style:
+
+![alt text](/pub/images/test_img.png)
+
+Reference style:
+
+![alt text][testimg]
+
+[testimg]: /pub/images/test_img.png
+
+---
+
+Tables
+======
+
+Tables can be aligned with colons and inline markdown is allowed.
+
+| Left-align | Center-align | Right-align       |
+| :--------- | :----------: | ----------------: |
+| *Italic*   | **Bold**     | **_Bold Italic_** |
+| And        | `code`       | `blocks`          |
+
+---
+
+Block Quotes
+============
+
+> Block quotes can be inserted with a '> ' prefix.
+
+They can be separated by normal text.
+
+> And then continue again.
+