Period: .
28 |
29 | In Markdown 1.0.0 and earlier. Version
2 | 8. This line turns into a list item.
3 | Because a hard-wrapped line in the
4 | middle of a paragraph looked like a
5 | list item.
6 |
7 | Here's one with a bullet.
8 | * criminey.
9 |
--------------------------------------------------------------------------------
/Data/Hard-wrapped paragraphs with list-like lines.text:
--------------------------------------------------------------------------------
1 | In Markdown 1.0.0 and earlier. Version
2 | 8. This line turns into a list item.
3 | Because a hard-wrapped line in the
4 | middle of a paragraph looked like a
5 | list item.
6 |
7 | Here's one with a bullet.
8 | * criminey.
9 |
--------------------------------------------------------------------------------
/Data/Horizontal rules.html:
--------------------------------------------------------------------------------
1 | Paragraph one.
2 |
3 |
4 |
5 |
8 |
9 | Paragraph two.
10 |
11 |
12 |
13 | The end.
14 |
--------------------------------------------------------------------------------
/Data/Inline HTML comments.text:
--------------------------------------------------------------------------------
1 | Paragraph one.
2 |
3 |
4 |
5 |
8 |
9 | Paragraph two.
10 |
11 |
12 |
13 | The end.
14 |
--------------------------------------------------------------------------------
/Data/Links, inline style.html:
--------------------------------------------------------------------------------
1 | Indented [four][] times.
16 |
17 | A paragraph is simply one or more consecutive lines of text, separated
30 | by one or more blank lines. (A blank line is any line that looks like a
31 | blank line -- a line containing nothing spaces or tabs is considered
32 | blank.) Normal paragraphs should not be intended with spaces or tabs.
33 |
34 | Markdown uses asterisks and underscores to indicate spans of emphasis.
94 |
95 | Ordered (numbered) lists use regular numbers, followed by periods, as
148 | list markers:
149 |
150 | Inline-style links use parentheses immediately after the link text.
191 | For example:
192 |
193 | Reference-style links allow you to refer to your links by names, which
214 | you define elsewhere in your document:
215 |
216 | The title attribute is optional. Link names may contain letters,
233 | numbers and spaces, but are not case sensitive:
234 |
235 | Image syntax is very much like link syntax.
250 |
251 | In a regular paragraph, you can create code span by wrapping text in
271 | backtick quotes. Any ampersands (&
) and angle brackets (<
or
272 | >
) will automatically be translated into HTML entities. This makes
273 | it easy to use Markdown to write about HTML example code:
274 |
275 | To specify an entire block of pre-formatted code, indent every line of
292 | the block by 4 spaces or 1 tab. Just like with code spans, &
, <
,
293 | and >
characters will be escaped automatically.
294 |
295 | Now is the time for all good men to come to
82 | the aid of their country. This is just a
83 | regular paragraph.
84 |
85 | The quick brown fox jumped over the lazy
86 | dog's back.
87 |
88 | ` tags for the
168 | list item text. You can create multi-paragraph list items by indenting
169 | the paragraphs by 4 spaces or 1 tab:
170 |
171 | * A list item.
172 |
173 | With multiple paragraphs.
174 |
175 | * Another item in the list.
176 |
177 | Output:
178 |
179 |