docs/markdown_syntax.html in maruku-0.4.0 vs docs/markdown_syntax.html in maruku-0.4.1

- old
+ new

@@ -64,25 +64,25 @@ <li><a href='#autolink'>Automatic Links</a></li> </ul> </li> </ul> -<p><strong>Note:</strong> This document is itself written using Markdown; you can <a href='/projects/markdown/syntax.text'>see the source for it by adding &apos;.text&apos; to the URL</a>.</p> +<p><strong>Note:</strong> This document is itself written using Markdown; you can <a href='/projects/markdown/syntax.text'>see the source for it by adding &lsquo;.text&rsquo; to the URL</a>.</p> <hr /><h2 id='overview'>Overview</h2><h3 id='philosophy'>Philosophy</h3> <p>Markdown is intended to be as easy-to-read and easy-to-write as is feasible.</p> -<p>Readability, however, is emphasized above all else. A Markdown-formatted document should be publishable as-is, as plain text, without looking like it&apos;s been marked up with tags or formatting instructions. While Markdown&apos;s syntax has been influenced by several existing text-to-HTML filters -- including <a href='http://docutils.sourceforge.net/mirror/setext.html'>Setext</a>, <a href='http://www.aaronsw.com/2002/atx/'>atx</a>, <a href='http://textism.com/tools/textile/'>Textile</a>, <a href='http://docutils.sourceforge.net/rst.html'>reStructuredText</a>, <a href='http://www.triptico.com/software/grutatxt.html'>Grutatext</a>, and <a href='http://ettext.taint.org/doc/'>EtText</a> -- the single biggest source of inspiration for Markdown&apos;s syntax is the format of plain text email.</p> +<p>Readability, however, is emphasized above all else. A Markdown-formatted document should be publishable as-is, as plain text, without looking like it&rsquo;s been marked up with tags or formatting instructions. While Markdown&rsquo;s syntax has been influenced by several existing text-to-HTML filters &ndash; including <a href='http://docutils.sourceforge.net/mirror/setext.html'>Setext</a>, <a href='http://www.aaronsw.com/2002/atx/'>atx</a>, <a href='http://textism.com/tools/textile/'>Textile</a>, <a href='http://docutils.sourceforge.net/rst.html'>reStructuredText</a>, <a href='http://www.triptico.com/software/grutatxt.html'>Grutatext</a>, and <a href='http://ettext.taint.org/doc/'>EtText</a> &ndash; the single biggest source of inspiration for Markdown&rsquo;s syntax is the format of plain text email.</p> -<p>To this end, Markdown&apos;s syntax is comprised entirely of punctuation characters, which punctuation characters have been carefully chosen so as to look like what they mean. E.g., asterisks around a word actually look like *emphasis*. Markdown lists look like, well, lists. Even blockquotes look like quoted passages of text, assuming you&apos;ve ever used email.</p> +<p>To this end, Markdown&rsquo;s syntax is comprised entirely of punctuation characters, which punctuation characters have been carefully chosen so as to look like what they mean. E.g., asterisks around a word actually look like *emphasis*. Markdown lists look like, well, lists. Even blockquotes look like quoted passages of text, assuming you&rsquo;ve ever used email.</p> <h3 id='html'>Inline HTML</h3> -<p>Markdown&apos;s syntax is intended for one purpose: to be used as a format for <em>writing</em> for the web.</p> +<p>Markdown&rsquo;s syntax is intended for one purpose: to be used as a format for <em>writing</em> for the web.</p> -<p>Markdown is not a replacement for HTML, or even close to it. Its syntax is very small, corresponding only to a very small subset of HTML tags. The idea is <em>not</em> to create a syntax that makes it easier to insert HTML tags. In my opinion, HTML tags are already easy to insert. The idea for Markdown is to make it easy to read, write, and edit prose. HTML is a <em>publishing</em> format; Markdown is a <em>writing</em> format. Thus, Markdown&apos;s formatting syntax only addresses issues that can be conveyed in plain text.</p> +<p>Markdown is not a replacement for HTML, or even close to it. Its syntax is very small, corresponding only to a very small subset of HTML tags. The idea is <em>not</em> to create a syntax that makes it easier to insert HTML tags. In my opinion, HTML tags are already easy to insert. The idea for Markdown is to make it easy to read, write, and edit prose. HTML is a <em>publishing</em> format; Markdown is a <em>writing</em> format. Thus, Markdown&rsquo;s formatting syntax only addresses issues that can be conveyed in plain text.</p> -<p>For any markup that is not covered by Markdown&apos;s syntax, you simply use HTML itself. There&apos;s no need to preface it or delimit it to indicate that you&apos;re switching from Markdown to HTML; you just use the tags.</p> +<p>For any markup that is not covered by Markdown&rsquo;s syntax, you simply use HTML itself. There&rsquo;s no need to preface it or delimit it to indicate that you&rsquo;re switching from Markdown to HTML; you just use the tags.</p> -<p>The only restrictions are that block-level HTML elements -- e.g. <code>&lt;div&gt;</code>, <code>&lt;table&gt;</code>, <code>&lt;pre&gt;</code>, <code>&lt;p&gt;</code>, etc. -- must be separated from surrounding content by blank lines, and the start and end tags of the block should not be indented with tabs or spaces. Markdown is smart enough not to add extra (unwanted) <code>&lt;p&gt;</code> tags around HTML block-level tags.</p> +<p>The only restrictions are that block-level HTML elements &ndash; e.g. <code>&lt;div&gt;</code>, <code>&lt;table&gt;</code>, <code>&lt;pre&gt;</code>, <code>&lt;p&gt;</code>, etc. &ndash; must be separated from surrounding content by blank lines, and the start and end tags of the block should not be indented with tabs or spaces. Markdown is smart enough not to add extra (unwanted) <code>&lt;p&gt;</code> tags around HTML block-level tags.</p> <p>For example, to add an HTML table to a Markdown article:</p> <pre><code>This is a regular paragraph. &lt;table&gt; @@ -91,19 +91,19 @@ &lt;/tr&gt; &lt;/table&gt; This is another regular paragraph. </code></pre> -<p>Note that Markdown formatting syntax is not processed within block-level HTML tags. E.g., you can&apos;t use Markdown-style <code>*emphasis*</code> inside an HTML block.</p> +<p>Note that Markdown formatting syntax is not processed within block-level HTML tags. E.g., you can&rsquo;t use Markdown-style <code>*emphasis*</code> inside an HTML block.</p> -<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 used anywhere in a Markdown paragraph, list item, or header. If you want, you can even use HTML tags instead of Markdown formatting; e.g. if you&apos;d prefer to use HTML <code>&lt;a&gt;</code> or <code>&lt;img&gt;</code> tags instead of Markdown&apos;s link or image syntax, go right ahead.</p> +<p>Span-level HTML tags &ndash; e.g. <code>&lt;span&gt;</code>, <code>&lt;cite&gt;</code>, or <code>&lt;del&gt;</code> &ndash; can be used anywhere in a Markdown paragraph, list item, or header. If you want, you can even use HTML tags instead of Markdown formatting; e.g. if you&rsquo;d prefer to use HTML <code>&lt;a&gt;</code> or <code>&lt;img&gt;</code> tags instead of Markdown&rsquo;s link or image syntax, go right ahead.</p> <p>Unlike block-level HTML tags, Markdown syntax <em>is</em> processed within span-level tags.</p> <h3 id='autoescape'>Automatic Escaping for Special Characters</h3> <p>In HTML, there are two characters that demand special treatment: <code>&lt;</code> and <code>&amp;</code>. Left angle brackets are used to start tags; ampersands are used to denote HTML entities. If you want to use them as literal characters, you must escape them as entities, e.g. <code>&amp;lt;</code>, and <code>&amp;amp;</code>.</p> -<p>Ampersands in particular are bedeviling for web writers. If you want to write about &apos;AT&amp;T&apos;, you need to write &apos;<code>AT&amp;amp;T</code>&apos;. You even need to escape ampersands within URLs. Thus, if you want to link to:</p> +<p>Ampersands in particular are bedeviling for web writers. If you want to write about &lsquo;AT&amp;T&rsquo;, you need to write &rsquo;<code>AT&amp;amp;T</code>&rsquo;. You even need to escape ampersands within URLs. Thus, if you want to link to:</p> <pre><code>http://images.google.com/images?num=30&amp;q=larry+bird </code></pre> <p>you need to encode the URL as:</p> <pre><code>http://images.google.com/images?num=30&amp;amp;q=larry+bird </code></pre> @@ -126,45 +126,45 @@ <p>Markdown will translate it to:</p> <pre><code>4 &amp;lt; 5 </code></pre> <p>However, inside Markdown code spans and blocks, angle brackets and ampersands are <em>always</em> encoded automatically. This makes it easy to use Markdown to write about HTML code. (As opposed to raw HTML, which is a terrible format for writing about HTML syntax, because every single <code>&lt;</code> and <code>&amp;</code> in your example code needs to be escaped.)</p> <hr /><h2 id='block'>Block Elements</h2><h3 id='p'>Paragraphs and Line Breaks</h3> -<p>A paragraph is simply one or more consecutive lines of text, separated by one or more blank lines. (A blank line is any line that looks like a blank line -- a line containing nothing but spaces or tabs is considered blank.) Normal paragraphs should not be indented with spaces or tabs.</p> +<p>A paragraph is simply one or more consecutive lines of text, separated by one or more blank lines. (A blank line is any line that looks like a blank line &ndash; a line containing nothing but spaces or tabs is considered blank.) Normal paragraphs should not be indented with spaces or tabs.</p> -<p>The implication of the &quot;one or more consecutive lines of text&quot; rule is that Markdown supports &quot;hard-wrapped&quot; text paragraphs. This differs significantly from most other text-to-HTML formatters (including Movable Type&apos;s &quot;Convert Line Breaks&quot; option) which translate every line break character in a paragraph into a <code>&lt;br /&gt;</code> tag.</p> +<p>The implication of the &ldquo;one or more consecutive lines of text&rdquo; rule is that Markdown supports &ldquo;hard-wrapped&rdquo; text paragraphs. This differs significantly from most other text-to-HTML formatters (including Movable Type&rsquo;s &ldquo;Convert Line Breaks&rdquo; option) which translate every line break character in a paragraph into a <code>&lt;br /&gt;</code> tag.</p> <p>When you <em>do</em> want to insert a <code>&lt;br /&gt;</code> break tag using Markdown, you end a line with two or more spaces, then type return.</p> -<p>Yes, this takes a tad more effort to create a <code>&lt;br /&gt;</code>, but a simplistic &quot;every line break is a <code>&lt;br /&gt;</code>&quot; rule wouldn&apos;t work for Markdown. Markdown&apos;s email-style <a href='#blockquote'>blockquoting</a> and multi-paragraph <a href='#list'>list items</a> work best -- and look better -- when you format them with hard breaks.</p> +<p>Yes, this takes a tad more effort to create a <code>&lt;br /&gt;</code>, but a simplistic &ldquo;every line break is a <code>&lt;br /&gt;</code>&rdquo; rule wouldn&rsquo;t work for Markdown. Markdown&rsquo;s email-style <a href='#blockquote'>blockquoting</a> and multi-paragraph <a href='#list'>list items</a> work best &ndash; and look better &ndash; when you format them with hard breaks.</p> <h3 id='header'>Headers</h3> <p>Markdown supports two styles of headers, <a href='http://docutils.sourceforge.net/mirror/setext.html'>Setext</a> and <a href='http://www.aaronsw.com/2002/atx/'>atx</a>.</p> -<p>Setext-style headers are &quot;underlined&quot; using equal signs (for first-level headers) and dashes (for second-level headers). For example:</p> +<p>Setext-style headers are &ldquo;underlined&rdquo; using equal signs (for first-level headers) and dashes (for second-level headers). For example:</p> <pre><code>This is an H1 ============= This is an H2 ------------- </code></pre> -<p>Any number of underlining <code>=</code>&apos;s or <code>-</code>&apos;s will work.</p> +<p>Any number of underlining <code>=</code>&rsquo;s or <code>-</code>&rsquo;s will work.</p> <p>Atx-style headers use 1-6 hash characters at the start of the line, corresponding to header levels 1-6. For example:</p> <pre><code># This is an H1 ## This is an H2 ###### This is an H6 </code></pre> -<p>Optionally, you may &quot;close&quot; atx-style headers. This is purely cosmetic -- you can use this if you think it looks better. The closing hashes don&apos;t even need to match the number of hashes used to open the header. (The number of opening hashes determines the header level.) :</p> +<p>Optionally, you may &ldquo;close&rdquo; atx-style headers. This is purely cosmetic &ndash; you can use this if you think it looks better. The closing hashes don&rsquo;t even need to match the number of hashes used to open the header. (The number of opening hashes determines the header level.) :</p> <pre><code># This is an H1 # ## This is an H2 ## ### This is an H3 ###### </code></pre><h3 id='blockquote'>Blockquotes</h3> -<p>Markdown uses email-style <code>&gt;</code> characters for blockquoting. If you&apos;re familiar with quoting passages of text in an email message, then you know how to create a blockquote in Markdown. It looks best if you hard wrap the text and put a <code>&gt;</code> before every line:</p> +<p>Markdown uses email-style <code>&gt;</code> characters for blockquoting. If you&rsquo;re familiar with quoting passages of text in an email message, then you know how to create a blockquote in Markdown. It looks best if you hard wrap the text and put a <code>&gt;</code> before every line:</p> <pre><code>&gt; This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet, &gt; consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus. &gt; Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus. &gt; &gt; Donec sit amet nisl. Aliquam semper ipsum sit amet velit. Suspendisse @@ -197,11 +197,11 @@ </code></pre> <p>Any decent text editor should make email-style quoting easy. For example, with BBEdit, you can make a selection and choose Increase Quote Level from the Text menu.</p> <h3 id='list'>Lists</h3> <p>Markdown supports ordered (numbered) and unordered (bulleted) lists.</p> -<p>Unordered lists use asterisks, pluses, and hyphens -- interchangably -- as list markers:</p> +<p>Unordered lists use asterisks, pluses, and hyphens &ndash; interchangably &ndash; as list markers:</p> <pre><code>* Red * Green * Blue </code></pre> <p>is equivalent to:</p> @@ -217,11 +217,11 @@ <p>Ordered lists use numbers followed by periods:</p> <pre><code>1. Bird 2. McHale 3. Parish </code></pre> -<p>It&apos;s important to note that the actual numbers you use to mark the list have no effect on the HTML output Markdown produces. The HTML Markdown produces from the above list is:</p> +<p>It&rsquo;s important to note that the actual numbers you use to mark the list have no effect on the HTML output Markdown produces. The HTML Markdown produces from the above list is:</p> <pre><code>&lt;ol&gt; &lt;li&gt;Bird&lt;/li&gt; &lt;li&gt;McHale&lt;/li&gt; &lt;li&gt;Parish&lt;/li&gt; &lt;/ol&gt; @@ -234,11 +234,11 @@ <p>or even:</p> <pre><code>3. Bird 1. McHale 8. Parish </code></pre> -<p>you&apos;d get the exact same HTML output. The point is, if you want to, you can use ordinal numbers in your ordered Markdown lists, so that the numbers in your source match the numbers in your published HTML. But if you want to be lazy, you don&apos;t have to.</p> +<p>you&rsquo;d get the exact same HTML output. The point is, if you want to, you can use ordinal numbers in your ordered Markdown lists, so that the numbers in your source match the numbers in your published HTML. But if you want to be lazy, you don&rsquo;t have to.</p> <p>If you do use lazy list numbering, however, you should still start the list with the number 1. At some point in the future, Markdown may support starting ordered lists at an arbitrary number.</p> <p>List markers typically start at the left margin, but may be indented by up to three spaces. List markers must be followed by one or more spaces or a tab.</p> @@ -247,11 +247,11 @@ Aliquam hendrerit mi posuere lectus. Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus. * Donec sit amet nisl. Aliquam semper ipsum sit amet velit. Suspendisse id sem consectetuer libero luctus adipiscing. </code></pre> -<p>But if you want to be lazy, you don&apos;t have to:</p> +<p>But if you want to be lazy, you don&rsquo;t have to:</p> <pre><code>* Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus. Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus. * Donec sit amet nisl. Aliquam semper ipsum sit amet velit. Suspendisse id sem consectetuer libero luctus adipiscing. @@ -295,23 +295,23 @@ only required to indent the first line. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. * Another item in the same list. </code></pre> -<p>To put a blockquote within a list item, the blockquote&apos;s <code>&gt;</code> delimiters need to be indented:</p> +<p>To put a blockquote within a list item, the blockquote&rsquo;s <code>&gt;</code> delimiters need to be indented:</p> <pre><code>* A list item with a blockquote: &gt; This is a blockquote &gt; inside a list item. </code></pre> -<p>To put a code block within a list item, the code block needs to be indented <em>twice</em> -- 8 spaces or two tabs:</p> +<p>To put a code block within a list item, the code block needs to be indented <em>twice</em> &ndash; 8 spaces or two tabs:</p> <pre><code>* A list item with a code block: &lt;code goes here&gt; </code></pre> -<p>It&apos;s worth noting that it&apos;s possible to trigger an ordered list by accident, by writing something like this:</p> +<p>It&rsquo;s worth noting that it&rsquo;s possible to trigger an ordered list by accident, by writing something like this:</p> <pre><code>1986. What a great season. </code></pre> <p>In other words, a <em>number-period-space</em> sequence at the beginning of a line. To avoid this, you can backslash-escape the period:</p> <pre><code>1986\. What a great season. @@ -328,11 +328,11 @@ <pre><code>&lt;p&gt;This is a normal paragraph:&lt;/p&gt; &lt;pre&gt;&lt;code&gt;This is a code block. &lt;/code&gt;&lt;/pre&gt; </code></pre> -<p>One level of indentation -- 4 spaces or 1 tab -- is removed from each line of the code block. For example, this:</p> +<p>One level of indentation &ndash; 4 spaces or 1 tab &ndash; is removed from each line of the code block. For example, this:</p> <pre><code>Here is an example of AppleScript: tell application &quot;Foo&quot; beep end tell @@ -345,22 +345,22 @@ end tell &lt;/code&gt;&lt;/pre&gt; </code></pre> <p>A code block continues until it reaches a line that is not indented (or the end of the article).</p> -<p>Within a code block, ampersands (<code>&amp;</code>) and angle brackets (<code>&lt;</code> and <code>&gt;</code>) are automatically converted into HTML entities. This makes it very easy to include example HTML source code using Markdown -- just paste it and indent it, and Markdown will handle the hassle of encoding the ampersands and angle brackets. For example, this:</p> +<p>Within a code block, ampersands (<code>&amp;</code>) and angle brackets (<code>&lt;</code> and <code>&gt;</code>) are automatically converted into HTML entities. This makes it very easy to include example HTML source code using Markdown &ndash; just paste it and indent it, and Markdown will handle the hassle of encoding the ampersands and angle brackets. For example, this:</p> <pre><code> &lt;div class=&quot;footer&quot;&gt; &amp;copy; 2004 Foo Corporation &lt;/div&gt; </code></pre> <p>will turn into:</p> <pre><code>&lt;pre&gt;&lt;code&gt;&amp;lt;div class=&quot;footer&quot;&amp;gt; &amp;amp;copy; 2004 Foo Corporation &amp;lt;/div&amp;gt; &lt;/code&gt;&lt;/pre&gt; </code></pre> -<p>Regular Markdown syntax is not processed within code blocks. E.g., asterisks are just literal asterisks within a code block. This means it&apos;s also easy to use Markdown to write about Markdown&apos;s own syntax.</p> +<p>Regular Markdown syntax is not processed within code blocks. E.g., asterisks are just literal asterisks within a code block. This means it&rsquo;s also easy to use Markdown to write about Markdown&rsquo;s own syntax.</p> <h3 id='hr'>Horizontal Rules</h3> <p>You can produce a horizontal rule tag (<code>&lt;hr /&gt;</code>) by placing three or more hyphens, asterisks, or underscores on a line by themselves. If you wish, you may use spaces between the hyphens or asterisks. Each of the following lines will produce a horizontal rule:</p> <pre><code>* * * *** @@ -374,11 +374,11 @@ </code></pre><hr /><h2 id='span'>Span Elements</h2><h3 id='link'>Links</h3> <p>Markdown supports two style of links: <em>inline</em> and <em>reference</em>.</p> <p>In both styles, the link text is delimited by square brackets.</p> -<p>To create an inline link, use a set of regular parentheses immediately after the link text&apos;s closing square bracket. Inside the parentheses, put the URL where you want the link to point, along with an <em>optional</em> title for the link, surrounded in quotes. For example:</p> +<p>To create an inline link, use a set of regular parentheses immediately after the link text&rsquo;s closing square bracket. Inside the parentheses, put the URL where you want the link to point, along with an <em>optional</em> title for the link, surrounded in quotes. For example:</p> <pre><code>This is [an example](http://example.com/ &quot;Title&quot;) inline link. [This link](http://example.net/) has no title attribute. </code></pre> <p>Will produce:</p> @@ -386,11 +386,11 @@ an example&lt;/a&gt; inline link.&lt;/p&gt; &lt;p&gt;&lt;a href=&quot;http://example.net/&quot;&gt;This link&lt;/a&gt; has no title attribute.&lt;/p&gt; </code></pre> -<p>If you&apos;re referring to a local resource on the same server, you can use relative paths:</p> +<p>If you&rsquo;re referring to a local resource on the same server, you can use relative paths:</p> <pre><code>See my [About](/about/) page for details. </code></pre> <p>Reference-style links use a second set of square brackets, inside which you place a label of your choosing to identify the link:</p> <pre><code>This is [an example][id] reference-style link. </code></pre> @@ -428,17 +428,17 @@ <pre><code>[id]: http://example.com/longish/path/to/resource/here &quot;Optional Title Here&quot; </code></pre> <p>Link definitions are only used for creating links during Markdown processing, and are stripped from your document in the HTML output.</p> -<p>Link definition names may constist of letters, numbers, spaces, and punctuation -- but they are <em>not</em> case sensitive. E.g. these two links:</p> +<p>Link definition names may constist of letters, numbers, spaces, and punctuation &ndash; but they are <em>not</em> case sensitive. E.g. these two links:</p> <pre><code>[link text][a] [link text][A] </code></pre> <p>are equivalent.</p> -<p>The <em>implicit link name</em> shortcut allows you to omit the name of the link, in which case the link text itself is used as the name. Just use an empty set of square brackets -- e.g., to link the word &quot;Google&quot; to the google.com web site, you could simply write:</p> +<p>The <em>implicit link name</em> shortcut allows you to omit the name of the link, in which case the link text itself is used as the name. Just use an empty set of square brackets &ndash; e.g., to link the word &ldquo;Google&rdquo; to the google.com web site, you could simply write:</p> <pre><code>[Google][] </code></pre> <p>And then define the link:</p> <pre><code>[Google]: http://google.com/ </code></pre> @@ -446,13 +446,13 @@ <pre><code>Visit [Daring Fireball][] for more information. </code></pre> <p>And then define the link:</p> <pre><code>[Daring Fireball]: http://daringfireball.net/ </code></pre> -<p>Link definitions can be placed anywhere in your Markdown document. I tend to put them immediately after each paragraph in which they&apos;re used, but if you want, you can put them all at the end of your document, sort of like footnotes.</p> +<p>Link definitions can be placed anywhere in your Markdown document. I tend to put them immediately after each paragraph in which they&rsquo;re used, but if you want, you can put them all at the end of your document, sort of like footnotes.</p> -<p>Here&apos;s an example of reference links in action:</p> +<p>Here&rsquo;s an example of reference links in action:</p> <pre><code>I get 10 times more traffic from [Google] [1] than from [Yahoo] [2] or [MSN] [3]. [1]: http://google.com/ &quot;Google&quot; [2]: http://search.yahoo.com/ &quot;Yahoo Search&quot; @@ -470,20 +470,20 @@ <pre><code>&lt;p&gt;I get 10 times more traffic from &lt;a href=&quot;http://google.com/&quot; title=&quot;Google&quot;&gt;Google&lt;/a&gt; than from &lt;a href=&quot;http://search.yahoo.com/&quot; title=&quot;Yahoo Search&quot;&gt;Yahoo&lt;/a&gt; or &lt;a href=&quot;http://search.msn.com/&quot; title=&quot;MSN Search&quot;&gt;MSN&lt;/a&gt;.&lt;/p&gt; </code></pre> -<p>For comparison, here is the same paragraph written using Markdown&apos;s inline link style:</p> +<p>For comparison, here is the same paragraph written using Markdown&rsquo;s inline link style:</p> <pre><code>I get 10 times more traffic from [Google](http://google.com/ &quot;Google&quot;) than from [Yahoo](http://search.yahoo.com/ &quot;Yahoo Search&quot;) or [MSN](http://search.msn.com/ &quot;MSN Search&quot;). </code></pre> -<p>The point of reference-style links is not that they&apos;re easier to write. The point is that with reference-style links, your document source is vastly more readable. Compare the above examples: using reference-style links, the paragraph itself is only 81 characters long; with inline-style links, it&apos;s 176 characters; and as raw HTML, it&apos;s 234 characters. In the raw HTML, there&apos;s more markup than there is text.</p> +<p>The point of reference-style links is not that they&rsquo;re easier to write. The point is that with reference-style links, your document source is vastly more readable. Compare the above examples: using reference-style links, the paragraph itself is only 81 characters long; with inline-style links, it&rsquo;s 176 characters; and as raw HTML, it&rsquo;s 234 characters. In the raw HTML, there&rsquo;s more markup than there is text.</p> -<p>With Markdown&apos;s reference-style links, a source document much more closely resembles the final output, as rendered in a browser. By allowing you to move the markup-related metadata out of the paragraph, you can add links without interrupting the narrative flow of your prose.</p> +<p>With Markdown&rsquo;s reference-style links, a source document much more closely resembles the final output, as rendered in a browser. By allowing you to move the markup-related metadata out of the paragraph, you can add links without interrupting the narrative flow of your prose.</p> <h3 id='em'>Emphasis</h3> -<p>Markdown treats asterisks (<code>*</code>) and underscores (<code>_</code>) as indicators of emphasis. Text wrapped with one <code>*</code> or <code>_</code> will be wrapped with an HTML <code>&lt;em&gt;</code> tag; double <code>*</code>&apos;s or <code>_</code>&apos;s will be wrapped with an HTML <code>&lt;strong&gt;</code> tag. E.g., this input:</p> +<p>Markdown treats asterisks (<code>*</code>) and underscores (<code>_</code>) as indicators of emphasis. Text wrapped with one <code>*</code> or <code>_</code> will be wrapped with an HTML <code>&lt;em&gt;</code> tag; double <code>*</code>&rsquo;s or <code>_</code>&rsquo;s will be wrapped with an HTML <code>&lt;strong&gt;</code> tag. E.g., this input:</p> <pre><code>*single asterisks* _single underscores_ **double asterisks** @@ -502,11 +502,11 @@ <p>You can use whichever style you prefer; the lone restriction is that the same character must be used to open and close an emphasis span.</p> <p>Emphasis can be used in the middle of a word:</p> <pre><code>un*fucking*believable </code></pre> -<p>But if you surround an <code>*</code> or <code>_</code> with spaces, it&apos;ll be treated as a literal asterisk or underscore.</p> +<p>But if you surround an <code>*</code> or <code>_</code> with spaces, it&rsquo;ll be treated as a literal asterisk or underscore.</p> <p>To produce a literal asterisk or underscore at a position where it would otherwise be used as an emphasis delimiter, you can backslash escape it:</p> <pre><code>\*this text is surrounded by literal asterisks\* @@ -521,11 +521,11 @@ <pre><code>``There is a literal backtick (`) here.`` </code></pre> <p>which will produce this:</p> <pre><code>&lt;p&gt;&lt;code&gt;There is a literal backtick (`) here.&lt;/code&gt;&lt;/p&gt; </code></pre> -<p>The backtick delimiters surrounding a code span may include spaces -- one after the opening, one before the closing. This allows you to place literal backtick characters at the beginning or end of a code span:</p> +<p>The backtick delimiters surrounding a code span may include spaces &ndash; one after the opening, one before the closing. This allows you to place literal backtick characters at the beginning or end of a code span:</p> <pre><code>A single backtick in a code span: `` ` `` A backtick-delimited string in a code span: `` `foo` `` </code></pre> <p>will produce:</p> @@ -546,11 +546,11 @@ <pre><code>&lt;p&gt;&lt;code&gt;&amp;amp;#8212;&lt;/code&gt; is the decimal-encoded equivalent of &lt;code&gt;&amp;amp;mdash;&lt;/code&gt;.&lt;/p&gt; </code></pre><h3 id='img'>Images</h3> -<p>Admittedly, it&apos;s fairly difficult to devise a &quot;natural&quot; syntax for placing images into a plain text document format.</p> +<p>Admittedly, it&rsquo;s fairly difficult to devise a &ldquo;natural&rdquo; syntax for placing images into a plain text document format.</p> <p>Markdown uses an image syntax that is intended to resemble the syntax for links, allowing for two styles: <em>inline</em> and <em>reference</em>.</p> <p>Inline image syntax looks like this:</p> <pre><code>![Alt text](/path/to/img.jpg) @@ -568,16 +568,16 @@ </ul> <p>Reference-style image syntax looks like this:</p> <pre><code>![Alt text][id] </code></pre> -<p>Where &quot;id&quot; is the name of a defined image reference. Image references are defined using syntax identical to link references:</p> +<p>Where &ldquo;id&rdquo; is the name of a defined image reference. Image references are defined using syntax identical to link references:</p> <pre><code>[id]: url/to/image &quot;Optional title attribute&quot; </code></pre> <p>As of this writing, Markdown has no syntax for specifying the dimensions of an image; if this is important to you, you can simply use regular HTML <code>&lt;img&gt;</code> tags.</p> <hr /><h2 id='misc'>Miscellaneous</h2><h3 id='autolink'>Automatic Links</h3> -<p>Markdown supports a shortcut style for creating &quot;automatic&quot; links for URLs and email addresses: simply surround the URL or email address with angle brackets. What this means is that if you want to show the actual text of a URL or email address, and also have it be a clickable link, you can do this:</p> +<p>Markdown supports a shortcut style for creating &ldquo;automatic&rdquo; links for URLs and email addresses: simply surround the URL or email address with angle brackets. What this means is that if you want to show the actual text of a URL or email address, and also have it be a clickable link, you can do this:</p> <pre><code>&lt;http://example.com/&gt;</code></pre> <p>Markdown will turn this into:</p> <pre><code>&lt;a href=&quot;http://example.com/&quot;&gt;http://example.com/&lt;/a&gt; </code></pre> <p>Automatic links for email addresses work similarly, except that Markdown will also perform a bit of randomized decimal and hex entity-encoding to help obscure your address from address-harvesting spambots. For example, Markdown will turn this:</p> @@ -587,15 +587,15 @@ <pre><code>&lt;a href=&quot;&amp;#x6D;&amp;#x61;i&amp;#x6C;&amp;#x74;&amp;#x6F;:&amp;#x61;&amp;#x64;&amp;#x64;&amp;#x72;&amp;#x65; &amp;#115;&amp;#115;&amp;#64;&amp;#101;&amp;#120;&amp;#x61;&amp;#109;&amp;#x70;&amp;#x6C;e&amp;#x2E;&amp;#99;&amp;#111; &amp;#109;&quot;&gt;&amp;#x61;&amp;#x64;&amp;#x64;&amp;#x72;&amp;#x65;&amp;#115;&amp;#115;&amp;#64;&amp;#101;&amp;#120;&amp;#x61; &amp;#109;&amp;#x70;&amp;#x6C;e&amp;#x2E;&amp;#99;&amp;#111;&amp;#109;&lt;/a&gt; </code></pre> -<p>which will render in a browser as a clickable link to &quot;address@example.com&quot;.</p> +<p>which will render in a browser as a clickable link to &ldquo;address@example.com&rdquo;.</p> -<p>(This sort of entity-encoding trick will indeed fool many, if not most, address-harvesting bots, but it definitely won&apos;t fool all of them. It&apos;s better than nothing, but an address published in this way will probably eventually start receiving spam.)</p> +<p>(This sort of entity-encoding trick will indeed fool many, if not most, address-harvesting bots, but it definitely won&rsquo;t fool all of them. It&rsquo;s better than nothing, but an address published in this way will probably eventually start receiving spam.)</p> <h3 id='backslash'>Backslash Escapes</h3> -<p>Markdown allows you to use backslash escapes to generate literal characters which would otherwise have special meaning in Markdown&apos;s formatting syntax. For example, if you wanted to surround a word with literal asterisks (instead of an HTML <code>&lt;em&gt;</code> tag), you can backslashes before the asterisks, like this:</p> +<p>Markdown allows you to use backslash escapes to generate literal characters which would otherwise have special meaning in Markdown&rsquo;s formatting syntax. For example, if you wanted to surround a word with literal asterisks (instead of an HTML <code>&lt;em&gt;</code> tag), you can backslashes before the asterisks, like this:</p> <pre><code>\*literal asterisks\* </code></pre> <p>Markdown provides backslash escapes for the following characters:</p> <pre><code>\ backslash ` backtick @@ -606,6 +606,6 @@ () parentheses # hash mark + plus sign - minus sign (hyphen) . dot -! exclamation mark</code></pre><div class='maruku_signature'><hr /><span style='font-size: small; font-style: italic'>Created by <a href='http://maruku.rubyforge.org' title='Maruku: a Markdown interpreter'>Maruku</a> at 10:36 on Saturday, January 06th, 2007.</span></div></body></html> +! exclamation mark</code></pre><div class='maruku_signature'><hr /><span style='font-size: small; font-style: italic'>Created by <a href='http://maruku.rubyforge.org' title='Maruku: a Markdown interpreter for Ruby'>Maruku</a> at 23:18 on Monday, January 08th, 2007.</span></div></body></html>