Formattierungshilfe hinzugefügt

This commit is contained in:
Peter 2016-05-04 17:35:13 +02:00
parent f857e13b3f
commit ee93544d95
Signed by: pludi
GPG Key ID: CFBA360E696EDC99
3 changed files with 20 additions and 1 deletions

View File

@ -18,6 +18,8 @@ blockquote {
code { code {
font-family: 'Hack', monospace; font-family: 'Hack', monospace;
color: #000;
background: #fff;
} }
body { body {

15
templates/help.html Normal file
View File

@ -0,0 +1,15 @@
<p>Formattierung</p>
<ul>
<li># Überschrift 1</li>
<li>## Überschrift 2</li>
<li>*Betont*</li>
<li>**Fett**</li>
<li>&gt; Zitat</li>
<li>&blank;* Liste</li>
<li>&blank;1. Aufzählung</li>
<li>[Linktext](URL)</li>
<li>[^Marke]</li>
<li>[^Marke]: Fußnote</li>
<li>&blank;&blank;&blank;&blank;Code</li>
<li>`monospace`</li>
</ul>

View File

@ -10,7 +10,9 @@
<link rel="stylesheet" href="{{ config.CSS }}" type="text/css" media="screen"> <link rel="stylesheet" href="{{ config.CSS }}" type="text/css" media="screen">
</head> </head>
<body> <body>
<div class="col-md-2"></div> <div class="col-md-2">
{% include 'help.html' %}
</div>
<div id="input" class="col-md-4"> <div id="input" class="col-md-4">
<textarea id="markdown" name="markdown"></textarea> <textarea id="markdown" name="markdown"></textarea>
</div> </div>