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><div></code>,
77 <code><table></code>, <code><pre></code>, <code><p></code>, etc. -- must be separated from surrounding
80 to add extra (unwanted) <code><p></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><span></code>, <code><cite></code>, or <code><del></code> -- can be
98 you'd prefer to use HTML <code><a></code> or <code><img></code> tags instead of Markdown's
104 <p>In HTML, there are two characters that demand special treatment: <code><</code>
105 and <code>&</code>. Left angle brackets are used to start tags; ampersands are
107 characters, you must escape them as entities, e.g. <code>&lt;</code>, and
108 <code>&amp;</code>.</p>
110 write about 'AT&T', you need to write '<code>AT&amp;T</code>'. You even need to
112 <pre><code>http://images.google.com/images?num=30&q=larry+bird
113 </code></pre>
115 <pre><code>http://images.google.com/images?num=30&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;</code>.</p>
125 <pre><code>&copy;
126 </code></pre>
128 <pre><code>AT&T
129 </code></pre>
131 <pre><code>AT&amp;T
132 </code></pre>
136 <pre><code>4 < 5
137 </code></pre>
139 <pre><code>4 &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><</code>
145 and <code>&</code> in your example code needs to be escaped.)</p>
159 character in a paragraph into a <code><br /></code> tag.</p>
160 <p>When you <em>do</em> want to insert a <code><br /></code> break tag using Markdown, you
162 <p>Yes, this takes a tad more effort to create a <code><br /></code>, but a simplistic
163 "every line break is a <code><br /></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>></code> characters for blockquoting. If you're
202 wrap the text and put a <code>></code> before every line:</p>
203 <pre><code>> 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>></code> before the first
212 <pre><code>> This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet,
218 </code></pre>
220 adding additional levels of <code>></code>:</p>
221 <pre><code>> This is the first level of quoting.
226 </code></pre>
228 and code blocks:</p>
229 <pre><code>> ## This is a header.
234 > 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><ol>
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><p></code> tags in the HTML output. For example, this input:</p>
310 <pre><code>* Bird
312 </code></pre>
314 <pre><code><ul>
318 </code></pre>
320 <pre><code>* Bird
323 </code></pre>
325 <pre><code><ul>
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>></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 <code goes here>
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><pre></code> and <code><code></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><p>This is a normal paragraph:</p>
390 <pre><code>This is a code block.
391 </code></pre>
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><p>Here is an example of AppleScript:</p>
404 <pre><code>tell application "Foo"
407 </code></pre>
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>&</code>) and angle brackets (<code><</code> and <code>></code>)
413 easy to include example HTML source code using Markdown -- just paste
416 <pre><code> <div class="footer">
419 </code></pre>
421 <pre><code><pre><code>&lt;div class="footer"&gt;
424 </code></pre>
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><hr /></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><p>This is <a href="http://example.com/" title="Title">
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]: <http://example.com/> "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><p>I get 10 times more traffic from <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><em></code> tag; double <code>*</code>'s or <code>_</code>'s will be wrapped with an HTML
574 <code><strong></code> tag. E.g., this input:</p>
575 <pre><code>*single asterisks*
582 </code></pre>
584 <pre><code><em>single asterisks</em>
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><p>Use the <code>printf()</code> function.</p>
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><p><code>There is a literal backtick (`) here.</code></p>
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><p>A single backtick in a code span: <code>`</code></p>
631 <p>A backtick-delimited string in a code span: <code>`foo`</code></p>
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 `<blink>` tags.
637 </code></pre>
639 <pre><code><p>Please don't use any <code>&lt;blink&gt;</code> tags.</p>
640 </code></pre>
642 <pre><code>`&#8212;` is the decimal-encoded equivalent of `&mdash;`.
643 </code></pre>
645 <pre><code><p><code>&amp;#8212;</code> is the decimal-encoded
646 equivalent of <code>&amp;mdash;</code>.</p>
647 </code></pre>
655 <pre><code>
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><img></code> tags.</p>
684 <pre><code><http://example.com/>
685 </code></pre>
687 <pre><code><a href="http://example.com/">http://example.com/</a>
688 </code></pre>
693 <pre><code><address@example.com>
694 </code></pre>
696 <pre><code><a href="&#x6D;&#x61;i&#x6C;&#x74;&#x6F;:&#x61;&#x64;&#x64;&#x72;&#x65;
700 </code></pre>
711 literal asterisks (instead of an HTML <code><em></code> tag), you can backslashes
713 <pre><code>\*literal asterisks\*
714 </code></pre>
716 <pre><code>\ backslash
728 </code