test.markdown
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 |
% Test Document
% Fabio Cevasco
% 2013-09-16
## Lists
### Unordered
* test
* test
* test
### Ordered
1. First
2. Second
3 Third
### Definitions
Term #1
: Definition #1
Term #2
: Definition #2
## Other
This is a paragraph, which is text surrounded by whitespace. Paragraphs can be on one
line (or many), and can drone on for hours.
Here is a Markdown link to [Warped](http://warpedvisions.org), and a literal .
Now some SimpleLinks, like one to [google] (automagically links to are-you-
feeling-lucky).
Now some inline markup like _italics_, **bold**, and `code()`. Note that underscores in
words are ignored in Markdown Extra.
> Blockquotes are like quoted text in email replies
>> And, they can be nested
And now some code:
// Code is just text indented a bit
which(is_easy) to_remember();
and fenced code:
~~~
def test
puts "Hello!"
end
~~~
First Header | Second Header
------------- | -------------
Content Cell | Content Cell
Content Cell | Content Cell
## Notes
> %warning%
> Warning
>
> Another test
> %note%
> Note
>
> This is a relatively-long note
> on one paragraph, which should be near enough 100% width on mobile devices.
> %tip%
> Tip
>
> Another test
> %important%
> Important
>
> Another test
> %caution%
> CAUTION
>
> Test...
> %see-also%
> See Also
>
> Something else...
## Special Lists & Element Styling
> %tasks%
> ### Task List
> **To Do something...**
> ~~Done!~~
> %presence%
> ### Attendees
> **Kirk, James T.**
> **Spock**
> ~~Sulu, Hikaru~~
> ~~Uhura, Nyota~~
> %availability%
> ### Availability
> **Kirk, James T.**
> *Spock*
> ~~Sulu, Hikaru~~
> ~~Uhura, Nyota~~
> %priority%
> ### Priority List
> **High Priority**
> `Normal Priority`
> *Low Priority*
> %events%
> ### Event List
> **Action!**
> `Decision...`
> *Observation...*
> %status%
> ### Status List
> **Everything OK**
> `On hold/in progress`
> *Blocked!*
> ~~Cancelled...~~
> %org%
> ### Org Chart
> * Head of Such and Such
> * Team Leader #1
> * Team Member
> * Team Member
> * Team Member
> * Team Leader #2
> * Team Member
> * Team Member
> * Team Member
> %tags%
> ### Tags
> * Deadline: [E10/2013](class:deadline)
> * Bug: [123275](class:bug) [123275](class:feature) [123275](class:user-story) [121235](class:epic) [123275](class:task) [123275](class:test)
> * User: [Fabio Cevasco](class:person)
> * Tag: [reference](class:tag)
> * Flags: [danger!](class:red-flag) [possible problems](class:yellow-flag) [all good](class:green-flag)
> * Place: [Genoa](class:place)
> * Project: [HastyScribe](class:project)
> * OS: [Windows 8](class:windows) [iPhone](class:apple) [Galaxy S4](class:android) [Ubuntu](class:linux)
> * Currency: [2,000](class:usd) [2,000](class:eur) [2,000](class:gbp) [2,000](class:jpy) [2,000](class:cny) [2,000](class:krw) [2,000](class:inr) [2,000](class:btc)
> %links%
> ### Links
> * <http://h3rald.com>
> * <http://github.com>
> * <http://www.linkedin.com>
> * <http://www.facebook.com>
> * <h3rald@h3rald.com>
> * [+01 0123456789](tel:+01 0123456789)
|