From 957d38e80e331beca76630628985077eb6676aa2 Mon Sep 17 00:00:00 2001 From: Aaron Taylor Date: Fri, 5 Jan 2018 17:28:46 -0800 Subject: [PATCH] Added markdown test page in site_sample/. --- site_sample/index.md | 118 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 118 insertions(+) create mode 100644 site_sample/index.md diff --git a/site_sample/index.md b/site_sample/index.md new file mode 100644 index 0000000..57f362a --- /dev/null +++ b/site_sample/index.md @@ -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: + +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. + -- 2.20.1