forked from fletcher/human-markdown-reference
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Thomas Heinrichsdobler
committed
Mar 21, 2012
1 parent
aa3f7f1
commit f6e21b8
Showing
1 changed file
with
160 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,160 @@ | ||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | ||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | ||
<head> | ||
<title>Markdown Guide</title> | ||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | ||
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/markdown-reference.css" /> | ||
<script type="text/javascript" src="javascripts/jquery-1.4.2.min.js"></script> | ||
<script type="text/javascript" src="javascripts/guide.js"></script> | ||
</head> | ||
<body> | ||
|
||
<h1 id="title">Markdown Guide</h1> | ||
|
||
<h2 class="section-name">Text</h2> | ||
|
||
<div class="section"> | ||
<table> | ||
<tr> | ||
<th>Markdown</th> | ||
<th>Ergebnis</th> | ||
</tr> | ||
<tr> | ||
<td>Dieser Text ist **fett**.</td> | ||
<td>Dieser Text ist <strong>fett</strong>.</td> | ||
</tr> | ||
<tr class="alternate"> | ||
<td>Dieser Text ist *kursiv*.</td> | ||
<td>Dieser Text ist <em>kursiv</em>.</td> | ||
</tr> | ||
<tr> | ||
<td>`Quelltext sieht so aus.`</td> | ||
<td><code>Quelltext sieht so aus.</code></td> | ||
</tr> | ||
</table> | ||
</div> | ||
|
||
<h2 class="section-name">Überschriften</h2> | ||
|
||
<div class="section"> | ||
<table> | ||
<tr> | ||
<th>Markdown</th> | ||
<th>Ergebnis</th> | ||
</tr> | ||
<tr> | ||
<td># Erste Ebene</td> | ||
<td><h1>Erste Ebene</h1></td> | ||
</tr> | ||
<tr class="alternate"> | ||
<td>## Zweite Ebene</td> | ||
<td><h2>Zweite Ebene</h2></td> | ||
</tr> | ||
<tr> | ||
<td>### Dritte Ebene</td> | ||
<td><h3>Dritte Ebene</h3></td> | ||
</tr> | ||
</table> | ||
</div> | ||
|
||
<h2 class="section-name">Zitate</h2> | ||
|
||
<div class="section"> | ||
<table> | ||
<tr class="alternate"> | ||
<td> | ||
> Dies ist die erste Zitat-Ebene.<br /> | ||
>> Dies ist eine integrierte Blockquote.<br /> | ||
> Zurück in der ersten Ebene. | ||
</td> | ||
<td> | ||
<blockquote> | ||
Dies ist die erste Zitat-Ebene. | ||
<blockquote> | ||
Dies ist eine integrierte Blockquote. | ||
</blockquote> | ||
Zurück in der ersten Ebene. | ||
</blockquote> | ||
</td> | ||
</tr> | ||
</table> | ||
</div> | ||
|
||
<h2 class="section-name">Links und Bilder</h2> | ||
|
||
<div class="section"> | ||
<table> | ||
<tr> | ||
<td>Link zu [Google](http://google.de).</td> | ||
<td>Link zu <a href="http://google.de" target="_blank">Google</a>.</td> | ||
</tr> | ||
<tr> | ||
<td>Senden Sie mir eine Email an <address@example.com>.</td> | ||
<td>Senden Sie mir eine Email an <a href="mailto:address@example.com">address@example.com</a>.</td> | ||
</tr> | ||
<tr> | ||
<td>![37signals logo](http://www.37signals.com/images/logo-37signals.png)</td> | ||
<td><img src="http://www.37signals.com/images/logo-37signals.png" alt="37signals logo" /></td> | ||
</tr> | ||
</table> | ||
</div> | ||
|
||
<h2 class="section-name">Listen</h2> | ||
|
||
<div class="section"> | ||
<table> | ||
<tr> | ||
<th>Markdown</th> | ||
<th>Ergebnis</th> | ||
</tr> | ||
<tr> | ||
<td> | ||
* Milch<br /> | ||
* Brot<br /> | ||
* Käse<br /> | ||
* Cheddar<br /> | ||
* Camembert<br /> | ||
* Reis | ||
</td> | ||
<td> | ||
<ul> | ||
<li>Milch</li> | ||
<li>Brot</li> | ||
<li>Käse | ||
<ul> | ||
<li>Cheddar</li> | ||
<li>Camembert</li> | ||
</ul> | ||
</li> | ||
<li>Reis</li> | ||
</ul> | ||
</td> | ||
</tr> | ||
<tr class="alternate"> | ||
<td> | ||
1. Milch<br /> | ||
2. Brot<br /> | ||
3. Käse<br /> | ||
1. Cheddar<br /> | ||
2. Camembert<br /> | ||
4. Reis | ||
</td> | ||
<td> | ||
<ol> | ||
<li>Milch</li> | ||
<li>Brot</li> | ||
<li>Käse | ||
<ol> | ||
<li>Cheddar</li> | ||
<li>Camembert</li> | ||
</ol> | ||
</li> | ||
<li>Reis</li> | ||
</ol> | ||
</td> | ||
</tr> | ||
</table> | ||
</div> | ||
|
||
</body> | ||
</html> |