X-Git-Url: https://git.subgeniuskitty.com/cmless/.git/blobdiff_plain/0a58f7f180aedab31fdb9fdded7eaba1221893e4..3c8b5f36ebbadeafa37eba82e96b0531862f3888:/site_sample/index.md diff --git a/site_sample/index.md b/site_sample/index.md deleted file mode 100644 index 57f362a..0000000 --- a/site_sample/index.md +++ /dev/null @@ -1,118 +0,0 @@ -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. -