Lines Matching refs:a

5     <li><a href="/projects/markdown/" title="Markdown Project Page">Main</a></li>
6 <li><a href="/projects/markdown/basics" title="Markdown Basics">Basics</a></li>
7 <li><a class="selected" title="Markdown Syntax Documentation">Syntax</a></li>
8 … <li><a href="/projects/markdown/license" title="Pricing and License Information">License</a></li>
9 <li><a href="/projects/markdown/dingus" title="Online Markdown Web Form">Dingus</a></li>
64 as to look like what they mean. E.g., asterisks around a word actually
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
81 edit prose. HTML is a *publishing* format; Markdown is a *writing*
96 For example, to add an HTML table to a Markdown article:
98 This is a regular paragraph.
113 used anywhere in a Markdown paragraph, list item, or header. If you
115 you'd prefer to use HTML `<a>` or `<img>` tags instead of Markdown's
149 So, if you want to include a copyright symbol in your article, you can write:
173 Markdown to write about HTML code. (As opposed to raw HTML, which is a
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
195 character in a paragraph into a `<br />` tag.
197 When you *do* want to insert a `<br />` break tag using Markdown, you
198 end a line with two or more spaces, then type return.
200 Yes, this takes a tad more effort to create a `<br />`, but a simplistic
201 "every line break is a `<br />`" rule wouldn't work for Markdown.
251 know how to create a blockquote in Markdown. It looks best if you hard
252 wrap the text and put a `>` before every line:
254 > This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet,
262 line of a hard-wrapped paragraph:
264 > This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet,
271 Blockquotes can be nested (i.e. a blockquote-in-a-blockquote) by
283 > ## This is a header.
293 example, with BBEdit, you can make a selection and choose Increase
359 or a tab.
404 paragraph in a list item must be indented by either 4 spaces
407 1. This is a list item with two paragraphs. Lorem ipsum dolor
421 * This is a list item with two paragraphs.
429 To put a blockquote within a list item, the blockquote's `>`
432 * A list item with a blockquote:
434 > This is a blockquote
435 > inside a list item.
437 To put a code block within a list item, the code block needs
440 * A list item with a code block:
448 1986. What a great season.
450 In other words, a *number-period-space* sequence at the beginning of a
453 1986\. What a great season.
461 of a code block are interpreted literally. Markdown wraps a code block
464 To produce a code block in Markdown, simply indent every line of the
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.
496 A code block continues until it reaches a line that is not indented
499 Within a code block, ampersands (`&`) and angle brackets (`<` and `>`)
517 asterisks are just literal asterisks within a code block. This means
524 You can produce a horizontal rule tag (`<hr />`) by placing three or
525 more hyphens, asterisks, or underscores on a line by themselves. If you
527 following lines will produce a horizontal rule:
552 To create an inline link, use a set of regular parentheses immediately
563 <p>This is <a href="http://example.com/" title="Title">
564 an example</a> inline link.</p>
566 <p><a href="http://example.net/">This link</a> has no
569 If you're referring to a local resource on the same server, you can
574 Reference-style links use a second set of square brackets, inside
575 which you place a label of your choosing to identify the link:
579 You can optionally use a space to separate the sets of brackets:
584 on a line by itself:
592 * followed by a colon;
595 * optionally followed by a title attribute for the link, enclosed
604 **Note:** There is a known bug in Markdown.pl 1.0.1 which prevents
624 [link text][a]
674 <p>I get 10 times more traffic from <a href="http://google.com/"
675 title="Google">Google</a> than from
676 <a href="http://search.yahoo.com/" title="Yahoo Search">Yahoo</a>
677 or <a href="http://search.msn.com/" title="MSN Search">MSN</a>.</p>
694 With Markdown's reference-style links, a source document much more
695 closely resembles the final output, as rendered in a browser. By
729 Emphasis can be used in the middle of a word:
733 But if you surround an `*` or `_` with spaces, it'll be treated as a
736 To produce a literal asterisk or underscore at a position where it
746 To indicate a span of code, wrap it with backtick quotes (`` ` ``).
747 Unlike a pre-formatted code block, a code span indicates code within a
756 To include a literal backtick character within a code span, you can use
759 ``There is a literal backtick (`) here.``
763 <p><code>There is a literal backtick (`) here.</code></p>
765 The backtick delimiters surrounding a code span may include spaces --
767 literal backtick characters at the beginning or end of a code span:
769 A single backtick in a code span: `` ` ``
771 A backtick-delimited string in a code span: `` `foo` ``
775 <p>A single backtick in a code span: <code>`</code></p>
777 <p>A backtick-delimited string in a code span: <code>`foo`</code></p>
779 With a code span, ampersands and angle brackets are encoded as HTML
802 Admittedly, it's fairly difficult to devise a "natural" syntax for
803 placing images into a plain text document format.
817 * followed by a set of square brackets, containing the `alt`
819 * followed by a set of parentheses, containing the URL or path to
827 Where "id" is the name of a defined image reference. Image references
844a shortcut style for creating "automatic" links for URLs and email addresses: simply surround the …
850 <a href="http://example.com/">http://example.com/</a>
853 Markdown will also perform a bit of randomized decimal and hex
861 <a href="&#x6D;&#x61;i&#x6C;&#x74;&#x6F;:&#x61;&#x64;&#x64;&#x72;&#x65;
864 &#109;&#x70;&#x6C;e&#x2E;&#99;&#111;&#109;</a>
866 which will render in a browser as a clickable link to "address@example.com".
879 formatting syntax. For example, if you wanted to surround a word