Home | History | Annotate | Download | only in markdown-test

Lines Matching full:code

22 <li><a href="#precode">Code Blocks</a></li>
29 <li><a href="#code">Code</a></li>
76 <p>The only restrictions are that block-level HTML elements -- e.g. <code>&lt;div&gt;</code>,
77 <code>&lt;table&gt;</code>, <code>&lt;pre&gt;</code>, <code>&lt;p&gt;</code>, etc. -- must be separated from surrounding
80 to add extra (unwanted) <code>&lt;p&gt;</code> tags around HTML block-level tags.</p>
82 <pre><code>This is a regular paragraph.
91 </code></pre>
93 HTML tags. E.g., you can't use Markdown-style <code>*emphasis*</code> inside an
95 <p>Span-level HTML tags -- e.g. <code>&lt;span&gt;</code>, <code>&lt;cite&gt;</code>, or <code>&lt;del&gt;</code> -- can be
98 you'd prefer to use HTML <code>&lt;a&gt;</code> or <code>&lt;img&gt;</code> tags instead of Markdown's
104 <p>In HTML, there are two characters that demand special treatment: <code>&lt;</code>
105 and <code>&amp;</code>. Left angle brackets are used to start tags; ampersands are
107 characters, you must escape them as entities, e.g. <code>&amp;lt;</code>, and
108 <code>&amp;amp;</code>.</p>
110 write about 'AT&amp;T', you need to write '<code>AT&amp;amp;T</code>'. You even need to
112 <pre><code>http://images.google.com/images?num=30&amp;q=larry+bird
113 </code></pre>
115 <pre><code>http://images.google.com/images?num=30&amp;amp;q=larry+bird
116 </code></pre>
117 <p>in your anchor tag <code>href</code> attribute. Needless to say, this is easy to
123 into <code>&amp;amp;</code>.</p>
125 <pre><code>&amp;copy;
126 </code></pre>
128 <pre><code>AT&amp;T
129 </code></pre>
131 <pre><code>AT&amp;amp;T
132 </code></pre>
136 <pre><code>4 &lt; 5
137 </code></pre>
139 <pre><code>4 &amp;lt; 5
140 </code></pre>
141 <p>However, inside Markdown code spans and blocks, angle brackets and
143 Markdown to write about HTML code. (As opposed to raw HTML, which is a
144 terrible format for writing about HTML syntax, because every single <code>&lt;</code>
145 and <code>&amp;</code> in your example code needs to be escaped.)</p>
159 character in a paragraph into a <code>&lt;br /&gt;</code> tag.</p>
160 <p>When you <em>do</em> want to insert a <code>&lt;br /&gt;</code> break tag using Markdown, you
162 <p>Yes, this takes a tad more effort to create a <code>&lt;br /&gt;</code>, but a simplistic
163 "every line break is a <code>&lt;br /&gt;</code>" rule wouldn't work for Markdown.
171 <pre><code>This is an H1
176 </code></pre>
177 <p>Any number of underlining <code>=</code>'s or <code>-</code>'s will work.</p>
180 <pre><code># This is an H1
185 </code></pre>
191 <pre><code># This is an H1 #
196 </code></pre>
199 <p>Markdown uses email-style <code>&gt;</code> characters for blockquoting. If you're
202 wrap the text and put a <code>&gt;</code> before every line:</p>
203 <pre><code>&gt; This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet,
209 </code></pre>
210 <p>Markdown allows you to be lazy and only put the <code>&gt;</code> before the first
212 <pre><code>&gt; This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet,
218 </code></pre>
220 adding additional levels of <code>&gt;</code>:</p>
221 <pre><code>&gt; This is the first level of quoting.
226 </code></pre>
228 and code blocks:</p>
229 <pre><code>&gt; ## This is a header.
234 &gt; Here's some example code:
237 </code></pre>
246 <pre><code>* Red
249 </code></pre>
251 <pre><code>+ Red
254 </code></pre>
256 <pre><code>- Red
259 </code></pre>
261 <pre><code>1. Bird
264 </code></pre>
268 <pre><code>&lt;ol&gt;
273 </code></pre>
275 <pre><code>1. Bird
278 </code></pre>
280 <pre><code>3. Bird
283 </code></pre>
295 <pre><code>* Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
300 </code></pre>
302 <pre><code>* Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
307 </code></pre>
309 items in <code>&lt;p&gt;</code> tags in the HTML output. For example, this input:</p>
310 <pre><code>* Bird
312 </code></pre>
314 <pre><code>&lt;ul&gt;
318 </code></pre>
320 <pre><code>* Bird
323 </code></pre>
325 <pre><code>&lt;ul&gt;
329 </code></pre>
333 <pre><code>1. This is a list item with two paragraphs. Lorem ipsum dolor
342 </code></pre>
346 <pre><code>* This is a list item with two paragraphs.
353 </code></pre>
354 <p>To put a blockquote within a list item, the blockquote's <code>&gt;</code>
356 <pre><code>* A list item with a blockquote:
360 </code></pre>
361 <p>To put a code block within a list item, the code block needs
363 <pre><code>* A list item with a code block:
365 &lt;code goes here&gt;
366 </code></pre>
369 <pre><code>1986. What a great season.
370 </code></pre>
373 <pre><code>1986\. What a great season.
374 </code></pre>
375 Code Blocks</h3>
377 <p>Pre-formatted code blocks are used for writing about programming or
378 markup source code. Rather than forming normal paragraphs, the lines
379 of a code block are interpreted literally. Markdown wraps a code block
380 in both <code>&lt;pre&gt;</code> and <code>&lt;code&gt;</code> tags.</p>
381 <p>To produce a code block in Markdown, simply indent every line of the
383 <pre><code>This is a normal paragraph:
385 This is a code block.
386 </code></pre>
388 <pre><code>&lt;p&gt;This is a normal paragraph:&lt;/p&gt;
390 &lt;pre&gt;&lt;code&gt;This is a code block.
391 &lt;/code&gt;&lt;/pre&gt;
392 </code></pre>
394 line of the code block. For example, this:</p>
395 <pre><code>Here is an example of AppleScript:
400 </code></pre>
402 <pre><code>&lt;p&gt;Here is an example of AppleScript:&lt;/p&gt;
404 &lt;pre&gt;&lt;code&gt;tell application "Foo"
407 &lt;/code&gt;&lt;/pre&gt;
408 </code></pre>
409 <p>A code block continues until it reaches a line that is not indented
411 <p>Within a code block, ampersands (<code>&amp;</code>) and angle brackets (<code>&lt;</code> and <code>&gt;</code>)
413 easy to include example HTML source code using Markdown -- just paste
416 <pre><code> &lt;div class="footer"&gt;
419 </code></pre>
421 <pre><code>&lt;pre&gt;&lt;code&gt;&amp;lt;div class="footer"&amp;gt;
424 &lt;/code&gt;&lt;/pre&gt;
425 </code></pre>
426 <p>Regular Markdown syntax is not processed within code blocks. E.g.,
427 asterisks are just literal asterisks within a code block. This means
431 <p>You can produce a horizontal rule tag (<code>&lt;hr /&gt;</code>) by placing three or
435 <pre><code>* * *
446 </code></pre>
458 <pre><code>This is [an example](http://example.com/ "Title") inline link.
461 </code></pre>
463 <pre><code>&lt;p&gt;This is &lt;a href="http://example.com/" title="Title"&gt;
468 </code></pre>
471 <pre><code>See my [About](/about/) page for details.
472 </code></pre>
475 <pre><code>This is [an example][id] reference-style link.
476 </code></pre>
478 <pre><code>This is [an example] [id] reference-style link.
479 </code></pre>
482 <pre><code>[id]: http://example.com/ "Optional Title Here"
483 </code></pre>
495 <pre><code>[id]: &lt;http://example.com/&gt; "Optional Title Here"
496 </code></pre>
499 <pre><code>[id]: http://example.com/longish/path/to/resource/here
501 </code></pre>
505 <pre><code>[link text][a]
507 </code></pre>
513 <pre><code>[Google][]
514 </code></pre>
516 <pre><code>[Google]: http://google.com/
517 </code></pre>
520 <pre><code>Visit [Daring Fireball][] for more information.
521 </code></pre>
523 <pre><code>[Daring Fireball]: http://daringfireball.net/
524 </code></pre>
530 <pre><code>I get 10 times more traffic from [Google] [1] than from
536 </code></pre>
538 <pre><code>I get 10 times more traffic from [Google][] than from
544 </code></pre>
546 <pre><code>&lt;p&gt;I get 10 times more traffic from &lt;a href="http://google.com/"
550 </code></pre>
553 <pre><code>I get 10 times more traffic from [Google](http://google.com/ "Google")
556 </code></pre>
571 <p>Markdown treats asterisks (<code>*</code>) and underscores (<code>_</code>) as indicators of
572 emphasis. Text wrapped with one <code>*</code> or <code>_</code> will be wrapped with an
573 HTML <code>&lt;em&gt;</code> tag; double <code>*</code>'s or <code>_</code>'s will be wrapped with an HTML
574 <code>&lt;strong&gt;</code> tag. E.g., this input:</p>
575 <pre><code>*single asterisks*
582 </code></pre>
584 <pre><code>&lt;em&gt;single asterisks&lt;/em&gt;
591 </code></pre>
595 <pre><code>un*fucking*believable
596 </code></pre>
597 <p>But if you surround an <code>*</code> or <code>_</code> with spaces, it'll be treated as a
602 <pre><code>\*this text is surrounded by literal asterisks\*
603 </code></pre>
604 <h3 id="code">Code</h3>
606 <p>To indicate a span of code, wrap it with backtick quotes (<code>`</code>).
607 Unlike a pre-formatted code block, a code span indicates code within a
609 <pre><code>Use the `printf()` function.
610 </code></pre>
612 <pre><code>&lt;p&gt;Use the &lt;code&gt;printf()&lt;/code&gt; function.&lt;/p&gt;
613 </code></pre>
614 <p>To include a literal backtick character within a code span, you can use
616 <pre><code>``There is a literal backtick (`) here.``
617 </code></pre>
619 <pre><code>&lt;p&gt;&lt;code&gt;There is a literal backtick (`) here.&lt;/code&gt;&lt;/p&gt;
620 </code></pre>
621 <p>The backtick delimiters surrounding a code span may include spaces --
623 literal backtick characters at the beginning or end of a code span:</p>
624 <pre><code>A single backtick in a code span: `` ` ``
626 A backtick-delimited string in a code span: `` `foo` ``
627 </code></pre>
629 <pre><code>&lt;p&gt;A single backtick in a code span: &lt;code&gt;`&lt;/code&gt;&lt;/p&gt;
631 &lt;p&gt;A backtick-delimited string in a code span: &lt;code&gt;`foo`&lt;/code&gt;&lt;/p&gt;
632 </code></pre>
633 <p>With a code span, ampersands and angle brackets are encoded as HTML
636 <pre><code>Please don't use any `&lt;blink&gt;` tags.
637 </code></pre>
639 <pre><code>&lt;p&gt;Please don't use any &lt;code&gt;&amp;lt;blink&amp;gt;&lt;/code&gt; tags.&lt;/p&gt;
640 </code></pre>
642 <pre><code>`&amp;#8212;` is the decimal-encoded equivalent of `&amp;mdash;`.
643 </code></pre>
645 <pre><code>&lt;p&gt;&lt;code&gt;&amp;amp;#8212;&lt;/code&gt; is the decimal-encoded
646 equivalent of &lt;code&gt;&amp;amp;mdash;&lt;/code&gt;.&lt;/p&gt;
647 </code></pre>
655 <pre><code>![Alt text](/path/to/img.jpg)
658 </code></pre>
661 <li>An exclamation mark: <code>!</code>;</li>
662 <li>followed by a set of square brackets, containing the <code>alt</code>
665 the image, and an optional <code>title</code> attribute enclosed in double
669 <pre><code>![Alt text][id]
670 </code></pre>
673 <pre><code>[id]: url/to/image "Optional title attribute"
674 </code></pre>
677 use regular HTML <code>&lt;img&gt;</code> tags.</p>
684 <pre><code>&lt;http://example.com/&gt;
685 </code></pre>
687 <pre><code>&lt;a href="http://example.com/"&gt;http://example.com/&lt;/a&gt;
688 </code></pre>
693 <pre><code>&lt;address@example.com&gt;
694 </code></pre>
696 <pre><code>&lt;a href="&amp;#x6D;&amp;#x61;i&amp;#x6C;&amp;#x74;&amp;#x6F;:&amp;#x61;&amp;#x64;&amp;#x64;&amp;#x72;&amp;#x65;
700 </code></pre>
711 literal asterisks (instead of an HTML <code>&lt;em&gt;</code> tag), you can backslashes
713 <pre><code>\*literal asterisks\*
714 </code></pre>
716 <pre><code>\ backslash
728 </code