Lines Matching refs:is

34 **Note:** This document is itself written using Markdown; you
45 Markdown is intended to be as easy-to-read and easy-to-write as is feasible.
47 Readability, however, is emphasized above all else. A Markdown-formatted
48 document should be publishable as-is, as plain text, without looking
53 inspiration for Markdown's syntax is the format of plain text email.
62 To this end, Markdown's syntax is comprised entirely of punctuation
73 Markdown's syntax is intended for one purpose: to be used as a
76 Markdown is not a replacement for HTML, or even close to it. Its
77 syntax is very small, corresponding only to a very small subset of
78 HTML tags. The idea is *not* to create a syntax that makes it easier
80 insert. The idea for Markdown is to make it easy to read, write, and
81 edit prose. HTML is a *publishing* format; Markdown is a *writing*
85 For any markup that is not covered by Markdown's syntax, you simply
93 not be indented with tabs or spaces. Markdown is smart enough not
98 This is a regular paragraph.
106 This is another regular paragraph.
108 Note that Markdown formatting syntax is not processed within block-level
118 Unlike block-level HTML tags, Markdown syntax *is* processed within
140 in your anchor tag `href` attribute. Needless to say, this is easy to
141 forget, and is probably the single most common source of HTML validation
173 Markdown to write about HTML code. (As opposed to raw HTML, which is a
186 A paragraph is simply one or more consecutive lines of text, separated
187 by one or more blank lines. (A blank line is any line that looks like a
188 blank line -- a line containing nothing but spaces or tabs is considered
191 The implication of the "one or more consecutive lines of text" rule is
201 "every line break is a `<br />`" rule wouldn't work for Markdown.
217 This is an H1
220 This is an H2
228 # This is an H1
230 ## This is an H2
232 ###### This is an H6
234 Optionally, you may "close" atx-style headers. This is purely
240 # This is an H1 #
242 ## This is an H2 ##
244 ### This is an H3 ######
254 > This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet,
264 > This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet,
274 > This is the first level of quoting.
276 > > This is nested blockquote.
283 > ## This is a header.
285 > 1. This is the first list item.
286 > 2. This is the second list item.
308 is equivalent to:
328 Markdown produces from the above list is:
348 you'd get the exact same HTML output. The point is, if you want to,
407 1. This is a list item with two paragraphs. Lorem ipsum dolor
421 * This is a list item with two paragraphs.
423 This is the second paragraph in the list item. You're
434 > This is a blockquote
467 This is a normal paragraph:
469 This is a code block.
473 <p>This is a normal paragraph:</p>
475 <pre><code>This is a code block.
478 One level of indentation -- 4 spaces or 1 tab -- is removed from each
481 Here is an example of AppleScript:
489 <p>Here is an example of AppleScript:</p>
496 A code block continues until it reaches a line that is not indented
516 Regular Markdown syntax is not processed within code blocks. E.g.,
550 In both styles, the link text is delimited by [square brackets].
557 This is [an example](http://example.com/ "Title") inline link.
563 <p>This is <a href="http://example.com/" title="Title">
577 This is [an example][id] reference-style link.
581 This is [an example] [id] reference-style link.
588 That is:
604 **Note:** There is a known bug in Markdown.pl 1.0.1 which prevents
630 link, in which case the link text itself is used as the name.
679 For comparison, here is the same paragraph written using
686 The point of reference-style links is not that they're easier to
687 write. The point is that with reference-style links, your document
688 source is vastly more readable. Compare the above examples: using
689 reference-style links, the paragraph itself is only 81 characters
692 is text.
726 You can use whichever style you prefer; the lone restriction is that
740 \*this text is surrounded by literal asterisks\*
759 ``There is a literal backtick (`) here.``
763 <p><code>There is a literal backtick (`) here.</code></p>
791 `&#8212;` is the decimal-encoded equivalent of `&mdash;`.
795 <p><code>&amp;#8212;</code> is the decimal-encoded
805 Markdown uses an image syntax that is intended to resemble the syntax
814 That is:
827 Where "id" is the name of a defined image reference. Image references
833 dimensions of an image; if this is important to you, you can simply
844 …ply surround the URL or email address with angle brackets. What this means is that if you want to …