2006-10-17 16:22:29 +02:00
|
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
|
|
|
|
"http://www.w3.org/TR/html4/loose.dtd">
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
|
|
<meta name="generator" content="pandoc" />
|
2007-01-06 10:54:58 +01:00
|
|
|
|
2006-10-17 16:22:29 +02:00
|
|
|
<meta name="author" content="John MacFarlane, Anonymous" />
|
|
|
|
<meta name="date" content="July 17, 2006" />
|
|
|
|
<title>Pandoc Test Suite</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
2007-01-06 10:54:58 +01:00
|
|
|
<h1 class="title">
|
|
|
|
Pandoc Test Suite
|
|
|
|
</h1>
|
|
|
|
<p>
|
|
|
|
This is a set of tests for pandoc. Most of them are adapted from
|
|
|
|
John Gruber’s markdown test suite.
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<hr />
|
|
|
|
<h1>Headers</h1>
|
|
|
|
<h2>Level 2 with an <a href="/url">embedded link</a></h2>
|
|
|
|
<h3>Level 3 with <em>emphasis</em></h3>
|
|
|
|
<h4>Level 4</h4>
|
|
|
|
<h5>Level 5</h5>
|
|
|
|
<h1>Level 1</h1>
|
|
|
|
<h2>Level 2 with <em>emphasis</em></h2>
|
|
|
|
<h3>Level 3</h3>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
with no blank line
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<h2>Level 2</h2>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
with no blank line
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<hr />
|
|
|
|
<h1>Paragraphs</h1>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
Here’s a regular paragraph.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
In Markdown 1.0.0 and earlier. Version 8. This line turns into a
|
|
|
|
list item. Because a hard-wrapped line in the middle of a paragraph
|
|
|
|
looked like a list item.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Here’s one with a bullet. * criminey.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
There should be a hard line break<br />here.
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<hr />
|
|
|
|
<h1>Block Quotes</h1>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
E-mail style:
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<blockquote>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
This is a block quote. It is pretty short.
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
</blockquote>
|
|
|
|
<blockquote>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
Code in a block quote:
|
|
|
|
</p>
|
|
|
|
<pre><code>sub status {
|
2007-01-04 23:52:16 +01:00
|
|
|
print "working";
|
2006-10-17 16:22:29 +02:00
|
|
|
}
|
|
|
|
</code></pre>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
A list:
|
|
|
|
</p>
|
|
|
|
<ol>
|
|
|
|
<li>item one</li>
|
|
|
|
<li>item two</li>
|
|
|
|
</ol>
|
|
|
|
<p>
|
|
|
|
Nested block quotes:
|
|
|
|
</p>
|
|
|
|
<blockquote>
|
|
|
|
<p>
|
|
|
|
nested
|
|
|
|
</p>
|
|
|
|
</blockquote>
|
|
|
|
<blockquote>
|
|
|
|
<p>
|
|
|
|
nested
|
|
|
|
</p>
|
|
|
|
</blockquote>
|
2006-10-17 16:22:29 +02:00
|
|
|
</blockquote>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
This should not be a block quote: 2 > 1.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Box-style:
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<blockquote>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
Example:
|
|
|
|
</p>
|
|
|
|
<pre><code>sub status {
|
2007-01-04 23:52:16 +01:00
|
|
|
print "working";
|
2006-10-17 16:22:29 +02:00
|
|
|
}
|
|
|
|
</code></pre>
|
|
|
|
</blockquote>
|
|
|
|
<blockquote>
|
2007-01-06 10:54:58 +01:00
|
|
|
<ol>
|
|
|
|
<li>do laundry</li>
|
|
|
|
<li>take out the trash</li>
|
|
|
|
</ol>
|
2006-10-17 16:22:29 +02:00
|
|
|
</blockquote>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
Here’s a nested one:
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<blockquote>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
Joe said:
|
|
|
|
</p>
|
|
|
|
<blockquote>
|
|
|
|
<p>
|
|
|
|
Don’t quote me.
|
|
|
|
</p>
|
|
|
|
</blockquote>
|
2006-10-17 16:22:29 +02:00
|
|
|
</blockquote>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
And a following paragraph.
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<hr />
|
|
|
|
<h1>Code Blocks</h1>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
Code:
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<pre><code>---- (should be four hyphens)
|
|
|
|
|
|
|
|
sub status {
|
2007-01-04 23:52:16 +01:00
|
|
|
print "working";
|
2006-10-17 16:22:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
this code block is indented by one tab
|
|
|
|
</code></pre>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
And:
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<pre><code> this code block is indented by two tabs
|
|
|
|
|
2007-01-04 23:52:16 +01:00
|
|
|
These should not be escaped: \$ \\ \> \[ \{
|
2006-10-17 16:22:29 +02:00
|
|
|
</code></pre>
|
|
|
|
<hr />
|
|
|
|
<h1>Lists</h1>
|
|
|
|
<h2>Unordered</h2>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
Asterisks tight:
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<ul>
|
2007-01-06 10:54:58 +01:00
|
|
|
<li>asterisk 1</li>
|
|
|
|
<li>asterisk 2</li>
|
|
|
|
<li>asterisk 3</li>
|
2006-10-17 16:22:29 +02:00
|
|
|
</ul>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
Asterisks loose:
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<ul>
|
2007-01-06 10:54:58 +01:00
|
|
|
<li><p>
|
|
|
|
asterisk 1
|
|
|
|
</p></li>
|
|
|
|
<li><p>
|
|
|
|
asterisk 2
|
|
|
|
</p></li>
|
|
|
|
<li><p>
|
|
|
|
asterisk 3
|
|
|
|
</p></li>
|
2006-10-17 16:22:29 +02:00
|
|
|
</ul>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
Pluses tight:
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<ul>
|
2007-01-06 10:54:58 +01:00
|
|
|
<li>Plus 1</li>
|
|
|
|
<li>Plus 2</li>
|
|
|
|
<li>Plus 3</li>
|
2006-10-17 16:22:29 +02:00
|
|
|
</ul>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
Pluses loose:
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<ul>
|
2007-01-06 10:54:58 +01:00
|
|
|
<li><p>
|
|
|
|
Plus 1
|
|
|
|
</p></li>
|
|
|
|
<li><p>
|
|
|
|
Plus 2
|
|
|
|
</p></li>
|
|
|
|
<li><p>
|
|
|
|
Plus 3
|
|
|
|
</p></li>
|
2006-10-17 16:22:29 +02:00
|
|
|
</ul>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
Minuses tight:
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<ul>
|
2007-01-06 10:54:58 +01:00
|
|
|
<li>Minus 1</li>
|
|
|
|
<li>Minus 2</li>
|
|
|
|
<li>Minus 3</li>
|
2006-10-17 16:22:29 +02:00
|
|
|
</ul>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
Minuses loose:
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<ul>
|
2007-01-06 10:54:58 +01:00
|
|
|
<li><p>
|
|
|
|
Minus 1
|
|
|
|
</p></li>
|
|
|
|
<li><p>
|
|
|
|
Minus 2
|
|
|
|
</p></li>
|
|
|
|
<li><p>
|
|
|
|
Minus 3
|
|
|
|
</p></li>
|
2006-10-17 16:22:29 +02:00
|
|
|
</ul>
|
|
|
|
<h2>Ordered</h2>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
Tight:
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<ol>
|
2007-01-06 10:54:58 +01:00
|
|
|
<li>First</li>
|
|
|
|
<li>Second</li>
|
|
|
|
<li>Third</li>
|
2006-10-17 16:22:29 +02:00
|
|
|
</ol>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
and:
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<ol>
|
2007-01-06 10:54:58 +01:00
|
|
|
<li>One</li>
|
|
|
|
<li>Two</li>
|
|
|
|
<li>Three</li>
|
2006-10-17 16:22:29 +02:00
|
|
|
</ol>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
Loose using tabs:
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<ol>
|
2007-01-06 10:54:58 +01:00
|
|
|
<li><p>
|
|
|
|
First
|
|
|
|
</p></li>
|
|
|
|
<li><p>
|
|
|
|
Second
|
|
|
|
</p></li>
|
|
|
|
<li><p>
|
|
|
|
Third
|
|
|
|
</p></li>
|
2006-10-17 16:22:29 +02:00
|
|
|
</ol>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
and using spaces:
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<ol>
|
2007-01-06 10:54:58 +01:00
|
|
|
<li><p>
|
|
|
|
One
|
|
|
|
</p></li>
|
|
|
|
<li><p>
|
|
|
|
Two
|
|
|
|
</p></li>
|
|
|
|
<li><p>
|
|
|
|
Three
|
|
|
|
</p></li>
|
2006-10-17 16:22:29 +02:00
|
|
|
</ol>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
Multiple paragraphs:
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<ol>
|
2007-01-06 10:54:58 +01:00
|
|
|
<li><p>
|
|
|
|
Item 1, graf one.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Item 1. graf two. The quick brown fox jumped over the lazy
|
|
|
|
dog’s back.
|
|
|
|
</p></li>
|
|
|
|
<li><p>
|
|
|
|
Item 2.
|
|
|
|
</p></li>
|
|
|
|
<li><p>
|
|
|
|
Item 3.
|
|
|
|
</p></li>
|
2006-10-17 16:22:29 +02:00
|
|
|
</ol>
|
|
|
|
<h2>Nested</h2>
|
|
|
|
<ul>
|
2007-01-06 10:54:58 +01:00
|
|
|
<li>Tab
|
|
|
|
<ul>
|
|
|
|
<li>Tab
|
|
|
|
<ul>
|
|
|
|
<li>Tab</li>
|
|
|
|
</ul></li>
|
|
|
|
</ul></li>
|
2006-10-17 16:22:29 +02:00
|
|
|
</ul>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
Here’s another:
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<ol>
|
2007-01-06 10:54:58 +01:00
|
|
|
<li>First</li>
|
|
|
|
<li>Second:
|
|
|
|
<ul>
|
|
|
|
<li>Fee</li>
|
|
|
|
<li>Fie</li>
|
|
|
|
<li>Foe</li>
|
|
|
|
</ul></li>
|
|
|
|
<li>Third</li>
|
2006-10-17 16:22:29 +02:00
|
|
|
</ol>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
Same thing but with paragraphs:
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<ol>
|
2007-01-06 10:54:58 +01:00
|
|
|
<li><p>
|
|
|
|
First
|
|
|
|
</p></li>
|
|
|
|
<li><p>
|
|
|
|
Second:
|
|
|
|
</p>
|
|
|
|
<ul>
|
|
|
|
<li>Fee</li>
|
|
|
|
<li>Fie</li>
|
|
|
|
<li>Foe</li>
|
|
|
|
</ul></li>
|
|
|
|
<li><p>
|
|
|
|
Third
|
|
|
|
</p></li>
|
2006-10-17 16:22:29 +02:00
|
|
|
</ol>
|
|
|
|
<h2>Tabs and spaces</h2>
|
|
|
|
<ul>
|
2007-01-06 10:54:58 +01:00
|
|
|
<li><p>
|
|
|
|
this is a list item indented with tabs
|
|
|
|
</p></li>
|
|
|
|
<li><p>
|
|
|
|
this is a list item indented with spaces
|
|
|
|
</p>
|
|
|
|
<ul>
|
|
|
|
<li><p>
|
|
|
|
this is an example list item indented with tabs
|
|
|
|
</p></li>
|
|
|
|
<li><p>
|
|
|
|
this is an example list item indented with spaces
|
|
|
|
</p></li>
|
|
|
|
</ul></li>
|
2006-10-17 16:22:29 +02:00
|
|
|
</ul>
|
|
|
|
<hr />
|
|
|
|
<h1>HTML Blocks</h1>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
Simple block on one line:
|
|
|
|
</p>
|
|
|
|
<div>
|
|
|
|
foo
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
And nested without indentation:
|
|
|
|
</p>
|
|
|
|
<div>
|
2006-10-17 16:22:29 +02:00
|
|
|
<div>
|
|
|
|
<div>
|
2007-01-06 10:54:58 +01:00
|
|
|
foo
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
bar
|
2006-10-17 16:22:29 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2007-01-06 10:54:58 +01:00
|
|
|
|
|
|
|
<p>
|
|
|
|
Interpreted markdown in a table:
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<table>
|
|
|
|
<tr>
|
2007-01-06 10:54:58 +01:00
|
|
|
<td>
|
|
|
|
This is <em>emphasized</em>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
And this is <strong>strong</strong>
|
|
|
|
</td>
|
2006-10-17 16:22:29 +02:00
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<script type="text/javascript">document.write('This *should not* be interpreted as markdown');</script>
|
2007-01-06 10:54:58 +01:00
|
|
|
|
|
|
|
<p>
|
|
|
|
Here’s a simple block:
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<div>
|
2007-01-06 10:54:58 +01:00
|
|
|
|
|
|
|
foo
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
This should be a code block, though:
|
|
|
|
</p>
|
2007-01-04 23:52:16 +01:00
|
|
|
<pre><code><div>
|
2006-10-17 16:22:29 +02:00
|
|
|
foo
|
2007-01-04 23:52:16 +01:00
|
|
|
</div>
|
2006-10-17 16:22:29 +02:00
|
|
|
</code></pre>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
As should this:
|
|
|
|
</p>
|
2007-01-04 23:52:16 +01:00
|
|
|
<pre><code><div>foo</div>
|
2006-10-17 16:22:29 +02:00
|
|
|
</code></pre>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
Now, nested:
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<div>
|
|
|
|
<div>
|
|
|
|
<div>
|
2007-01-06 10:54:58 +01:00
|
|
|
|
|
|
|
foo
|
|
|
|
</div>
|
2006-10-17 16:22:29 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2007-01-06 10:54:58 +01:00
|
|
|
|
|
|
|
<p>
|
|
|
|
This should just be an HTML comment:
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<!-- Comment -->
|
2007-01-06 10:54:58 +01:00
|
|
|
|
|
|
|
<p>
|
|
|
|
Multiline:
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<!--
|
|
|
|
Blah
|
|
|
|
Blah
|
|
|
|
-->
|
|
|
|
|
|
|
|
<!--
|
|
|
|
This is another comment.
|
|
|
|
-->
|
2007-01-06 10:54:58 +01:00
|
|
|
|
|
|
|
<p>
|
|
|
|
Code block:
|
|
|
|
</p>
|
2007-01-04 23:52:16 +01:00
|
|
|
<pre><code><!-- Comment -->
|
2006-10-17 16:22:29 +02:00
|
|
|
</code></pre>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
Just plain comment, with trailing spaces on the line:
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<!-- foo -->
|
2007-01-06 10:54:58 +01:00
|
|
|
|
|
|
|
<p>
|
|
|
|
Code:
|
|
|
|
</p>
|
2007-01-04 23:52:16 +01:00
|
|
|
<pre><code><hr />
|
2006-10-17 16:22:29 +02:00
|
|
|
</code></pre>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
Hr’s:
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<hr>
|
|
|
|
|
|
|
|
<hr />
|
|
|
|
|
|
|
|
<hr />
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
|
|
|
|
<hr />
|
|
|
|
|
|
|
|
<hr />
|
|
|
|
|
|
|
|
<hr class="foo" id="bar" />
|
|
|
|
|
|
|
|
<hr class="foo" id="bar" />
|
|
|
|
|
|
|
|
<hr class="foo" id="bar">
|
2007-01-06 10:54:58 +01:00
|
|
|
|
2006-10-17 16:22:29 +02:00
|
|
|
<hr />
|
|
|
|
<h1>Inline Markup</h1>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
This is <em>emphasized</em>, and so <em>is this</em>.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
This is <strong>strong</strong>, and so <strong>is this</strong>.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
An <em><a href="/url">emphasized link</a></em>.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<strong><em>This is strong and em.</em></strong>
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
So is <strong><em>this</em></strong> word.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<strong><em>This is strong and em.</em></strong>
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
So is <strong><em>this</em></strong> word.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
This is code: <code>></code>, <code>$</code>, <code>\</code>,
|
|
|
|
<code>\$</code>, <code><html></code>.
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<hr />
|
|
|
|
<h1>Smart quotes, ellipses, dashes</h1>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
“Hello,” said the spider.
|
|
|
|
“‘Shelob’ is my name.”
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
‘A’, ‘B’, and ‘C’ are letters.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
‘Oak,’ ‘elm,’ and ‘beech’ are
|
|
|
|
names of trees. So is ‘pine.’
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
‘He said, “I want to go.”’ Were you alive
|
|
|
|
in the 70’s?
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Here is some quoted ‘<code>code</code>’ and a
|
|
|
|
“<a href="http://example.com/?foo=1&bar=2">quoted link</a>”.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Some dashes: one—two—three—four—five.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Dashes between numbers: 5–7, 255–66, 1987–1999.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Ellipses…and…and….
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<hr />
|
|
|
|
<h1>LaTeX</h1>
|
|
|
|
<ul>
|
2007-01-06 10:54:58 +01:00
|
|
|
<li>\cite[22-23]{smith.1899}</li>
|
|
|
|
<li>\doublespacing</li>
|
|
|
|
<li>$2+2=4$</li>
|
|
|
|
<li>$x \in y$</li>
|
|
|
|
<li>$\alpha \wedge \omega$</li>
|
|
|
|
<li>$223$</li>
|
|
|
|
<li>$p$-Tree</li>
|
|
|
|
<li>$\frac{d}{dx}f(x)=\lim_{h\to 0}\frac{f(x+h)-f(x)}{h}$</li>
|
|
|
|
<li>Here’s one that has a line break in it:
|
|
|
|
$\alpha + \omega \times x^2$.</li>
|
2006-10-17 16:22:29 +02:00
|
|
|
</ul>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
These shouldn’t be math:
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<ul>
|
2007-01-06 10:54:58 +01:00
|
|
|
<li>To get the famous equation, write <code>$e = mc^2$</code>.</li>
|
|
|
|
<li>$22,000 is a <em>lot</em> of money. So is $34,000. (It worked
|
|
|
|
if “lot” is emphasized.)</li>
|
|
|
|
<li>Escaped <code>$</code>: $73 <em>this should be emphasized</em>
|
|
|
|
23$.</li>
|
2006-10-17 16:22:29 +02:00
|
|
|
</ul>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
Here’s a LaTeX table:
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
\begin{tabular}{|l|l|}\hline
|
2006-10-17 16:22:29 +02:00
|
|
|
Animal & Number \\ \hline
|
|
|
|
Dog & 2 \\
|
|
|
|
Cat & 1 \\ \hline
|
2007-01-06 10:54:58 +01:00
|
|
|
\end{tabular}
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<hr />
|
|
|
|
<h1>Special Characters</h1>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
Here is some unicode:
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<ul>
|
2007-01-06 10:54:58 +01:00
|
|
|
<li>I hat: Î</li>
|
|
|
|
<li>o umlaut: ö</li>
|
|
|
|
<li>section: §</li>
|
|
|
|
<li>set membership: ∈</li>
|
|
|
|
<li>copyright: ©</li>
|
2006-10-17 16:22:29 +02:00
|
|
|
</ul>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
AT&T has an ampersand in their name.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
AT&T is another way to write it.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
This & that.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
4 < 5.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
6 > 5.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Backslash: \
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Backtick: `
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Asterisk: *
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Underscore: _
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Left brace: {
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Right brace: }
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Left bracket: [
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Right bracket: ]
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Left paren: (
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Right paren: )
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Greater-than: >
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Hash: #
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Period: .
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Bang: !
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Plus: +
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Minus: -
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<hr />
|
|
|
|
<h1>Links</h1>
|
|
|
|
<h2>Explicit</h2>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
Just a <a href="/url/">URL</a>.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<a href="/url/" title="title">URL and title</a>.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<a href="/url/" title="title preceded by two spaces">URL and title</a>.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<a href="/url/" title="title preceded by a tab">URL and title</a>.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<a href="/url/" title="title with "quotes" in it">URL and title</a>
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<a href="/url/" title="title with single quotes">URL and title</a>
|
|
|
|
</p>
|
2007-01-06 21:47:00 +01:00
|
|
|
<p>
|
|
|
|
<a href="/url/with_underscore">with_underscore</a>
|
|
|
|
</p>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
<script type="text/javascript">
|
2006-12-20 19:16:07 +01:00
|
|
|
<!--
|
|
|
|
h='nowhere.net';a='@';n='nobody';e=n+a+h;
|
|
|
|
document.write('<a h'+'ref'+'="ma'+'ilto'+':'+e+'">'+'Email link'+'<\/'+'a'+'>');
|
|
|
|
// -->
|
2007-01-06 10:54:58 +01:00
|
|
|
</script><noscript>Email link (nobody at nowhere dot net)</noscript>
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<a href="">Empty</a>.
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<h2>Reference</h2>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
Foo <a href="/url/">bar</a>.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Foo <a href="/url/">bar</a>.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Foo <a href="/url/">bar</a>.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
With <a href="/url/">embedded [brackets]</a>.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<a href="/url/">b</a> by itself should be a link.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Indented <a href="/url">once</a>.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Indented <a href="/url">twice</a>.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Indented <a href="/url">thrice</a>.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
This should [not][] be a link.
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<pre><code>[not]: /url
|
|
|
|
</code></pre>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
Foo
|
|
|
|
<a href="/url/" title="Title with "quotes" inside">bar</a>.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Foo
|
|
|
|
<a href="/url/" title="Title with "quote" inside">biz</a>.
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<h2>With ampersands</h2>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
Here’s a
|
|
|
|
<a href="http://example.com/?foo=1&bar=2">link with an ampersand in the URL</a>.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Here’s a link with an amersand in the link text:
|
|
|
|
<a href="http://att.com/" title="AT&T">AT&T</a>.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Here’s an <a href="/script?foo=1&bar=2">inline link</a>.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Here’s an
|
|
|
|
<a href="/script?foo=1&bar=2">inline link in pointy braces</a>.
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<h2>Autolinks</h2>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
With an ampersand:
|
|
|
|
<a href="http://example.com/?foo=1&bar=2">http://example.com/?foo=1&bar=2</a>
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<ul>
|
2007-01-06 10:54:58 +01:00
|
|
|
<li>In a list?</li>
|
|
|
|
<li><a href="http://example.com/">http://example.com/</a></li>
|
|
|
|
<li>It should.</li>
|
2006-10-17 16:22:29 +02:00
|
|
|
</ul>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
An e-mail address:
|
|
|
|
<script type="text/javascript">
|
2006-12-20 19:16:07 +01:00
|
|
|
<!--
|
|
|
|
h='nowhere.net';a='@';n='nobody';e=n+a+h;
|
|
|
|
document.write('<a h'+'ref'+'="ma'+'ilto'+':'+e+'">'+e+'<\/'+'a'+'>');
|
|
|
|
// -->
|
2007-01-06 10:54:58 +01:00
|
|
|
</script><noscript>nobody at nowhere dot net</noscript>
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<blockquote>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
Blockquoted: <a href="http://example.com/">http://example.com/</a>
|
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
</blockquote>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
Auto-links should not occur here:
|
|
|
|
<code><http://example.com/></code>
|
|
|
|
</p>
|
2007-01-04 23:52:16 +01:00
|
|
|
<pre><code>or here: <http://example.com/>
|
2006-10-17 16:22:29 +02:00
|
|
|
</code></pre>
|
|
|
|
<hr />
|
|
|
|
<h1>Images</h1>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
From “Voyage dans la Lune” by Georges Melies (1902):
|
|
|
|
</p>
|
|
|
|
<p>
|
2007-01-07 02:06:34 +01:00
|
|
|
<img src="lalune.jpg" alt="lalune" title="Voyage dans la Lune" />
|
2007-01-06 10:54:58 +01:00
|
|
|
</p>
|
|
|
|
<p>
|
2007-01-07 02:06:34 +01:00
|
|
|
Here is a movie <img src="movie.jpg" alt="movie" title="" /> icon.
|
2007-01-06 10:54:58 +01:00
|
|
|
</p>
|
2006-10-17 16:22:29 +02:00
|
|
|
<hr />
|
|
|
|
<h1>Footnotes</h1>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
Here is a footnote
|
|
|
|
reference,<sup class="footnoteRef" id="fnref1"><a href="#fn1">1</a></sup>
|
|
|
|
and
|
|
|
|
another.<sup class="footnoteRef" id="fnref2"><a href="#fn2">2</a></sup>
|
|
|
|
This should <em>not</em> be a footnote reference, because it
|
|
|
|
contains a space.[^my note] Here is an inline
|
|
|
|
note.<sup class="footnoteRef" id="fnref3"><a href="#fn3">3</a></sup>
|
|
|
|
</p>
|
2006-12-21 20:33:57 +01:00
|
|
|
<blockquote>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
Notes can go in
|
|
|
|
quotes.<sup class="footnoteRef" id="fnref4"><a href="#fn4">4</a></sup>
|
|
|
|
</p>
|
2006-12-21 20:33:57 +01:00
|
|
|
</blockquote>
|
|
|
|
<ol>
|
2007-01-06 10:54:58 +01:00
|
|
|
<li>And in list
|
|
|
|
items.<sup class="footnoteRef" id="fnref5"><a href="#fn5">5</a></sup></li>
|
2006-12-21 20:33:57 +01:00
|
|
|
</ol>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
This paragraph should not be part of the note, as it is not
|
|
|
|
indented.
|
|
|
|
</p>
|
2006-12-20 00:13:03 +01:00
|
|
|
<div class="footnotes">
|
2007-01-06 10:54:58 +01:00
|
|
|
<hr />
|
|
|
|
<ol>
|
|
|
|
<li id="fn1">
|
|
|
|
<p>
|
|
|
|
Here is the footnote. It can go anywhere after the footnote
|
|
|
|
reference. It need not be placed at the end of the document.
|
|
|
|
</p><a href="#fnref1" class="footnoteBacklink" title="Jump back to footnote 1">↩</a>
|
|
|
|
</li>
|
|
|
|
<li id="fn2">
|
|
|
|
<p>
|
|
|
|
Here’s the long note. This one contains multiple blocks.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Subsequent blocks are indented to show that they belong to the
|
|
|
|
footnote (as with list items).
|
|
|
|
</p>
|
|
|
|
<pre><code> { <code> }
|
2006-10-17 16:22:29 +02:00
|
|
|
</code></pre>
|
2007-01-06 10:54:58 +01:00
|
|
|
<p>
|
|
|
|
If you want, you can indent every line, but you can also be lazy
|
|
|
|
and just indent the first line of each block.
|
|
|
|
</p><a href="#fnref2" class="footnoteBacklink" title="Jump back to footnote 2">↩</a>
|
|
|
|
</li>
|
|
|
|
<li id="fn3">
|
|
|
|
<p>
|
|
|
|
This is <em>easier</em> to type. Inline notes may contain
|
|
|
|
<a href="http://google.com">links</a> and <code>]</code> verbatim
|
|
|
|
characters.
|
|
|
|
</p><a href="#fnref3" class="footnoteBacklink" title="Jump back to footnote 3">↩</a>
|
|
|
|
</li>
|
|
|
|
<li id="fn4">
|
|
|
|
<p>
|
|
|
|
In quote.
|
|
|
|
</p><a href="#fnref4" class="footnoteBacklink" title="Jump back to footnote 4">↩</a>
|
|
|
|
</li>
|
|
|
|
<li id="fn5">
|
|
|
|
<p>
|
|
|
|
In list.
|
|
|
|
</p><a href="#fnref5" class="footnoteBacklink" title="Jump back to footnote 5">↩</a>
|
|
|
|
</li>
|
|
|
|
</ol>
|
2006-10-17 16:22:29 +02:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|