Lines Matching refs:HTML

15     *   [Inline HTML](#html)
50 Markdown's syntax has been influenced by several existing text-to-HTML
71 <h3 id="html">Inline HTML</h3>
76 Markdown is not a replacement for HTML, or even close to it. Its
78 HTML tags. The idea is *not* to create a syntax that makes it easier
79 to insert HTML tags. In my opinion, HTML tags are already easy to
81 edit prose. HTML is a *publishing* format; Markdown is a *writing*
86 use HTML itself. There's no need to preface it or delimit it to
87 indicate that you're switching from Markdown to HTML; you just use
90 The only restrictions are that block-level HTML elements -- e.g. `<div>`,
94 to add extra (unwanted) `<p>` tags around HTML block-level tags.
96 For example, to add an HTML table to a Markdown article:
109 HTML tags. E.g., you can't use Markdown-style `*emphasis*` inside an
110 HTML block.
112 Span-level HTML tags -- e.g. `<span>`, `<cite>`, or `<del>` -- can be
114 want, you can even use HTML tags instead of Markdown formatting; e.g. if
115 you'd prefer to use HTML `<a>` or `<img>` tags instead of Markdown's
118 Unlike block-level HTML tags, Markdown syntax *is* processed within
124 In HTML, there are two characters that demand special treatment: `<`
126 used to denote HTML entities. If you want to use them as literal
141 forget, and is probably the single most common source of HTML validation
146 an HTML entity, it remains unchanged; otherwise it will be translated
161 Similarly, because Markdown supports [inline HTML](#html), if you use
162 angle brackets as delimiters for HTML tags, Markdown will treat them as
173 Markdown to write about HTML code. (As opposed to raw HTML, which is a
174 terrible format for writing about HTML syntax, because every single `<`
193 significantly from most other text-to-HTML formatters (including Movable
327 list have no effect on the HTML output Markdown produces. The HTML
348 you'd get the exact same HTML output. The point is, if you want to,
350 the numbers in your source match the numbers in your published HTML.
378 items in `<p>` tags in the HTML output. For example, this input:
500 are automatically converted into HTML entities. This makes it very
501 easy to include example HTML source code using Markdown -- just paste
618 processing, and are stripped from your document in the HTML output.
672 Both of the above examples will produce the following HTML output:
690 long; with inline-style links, it's 176 characters; and as raw HTML,
691 it's 234 characters. In the raw HTML, there's more markup than there
705 HTML `<em>` tag; double `*`'s or `_`'s will be wrapped with an HTML
779 With a code span, ampersands and angle brackets are encoded as HTML
780 entities automatically, which makes it easy to include example HTML
834 use regular HTML `<img>` tags.
880 with literal asterisks (instead of an HTML `<em>` tag), you can use