Child: [de8089] (diff)

Download this file

markdown_syntax.html    31 lines (21 with data), 760 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{% extends 'jinja_master/master.html' %}
{% block title %}{{c.project.name}} / {{c.app.config.options.mount_label}} / Markdown Syntax{% endblock %}
{% block header %}Markdown Syntax{% endblock %}
{% block content %}
<p>You can use
<a href="http://daringfireball.net/projects/markdown/">MarkDown</a>
Syntax here</p>
<h4>Example Input</h4>
<pre style="background-color:#fff">
# First-level heading
Some *emphasized* and **strong** text
#### Fourth-level heading
</pre>
<h4>Example Rendering</h4>
<div style="background-color:#fff">{{g.markdown.convert('''
# First-level heading
Some *emphasized* and **strong** text
#### Fourth-level heading
''')}}</div>
<a href="http://daringfireball.net/projects/markdown/syntax">More Examples</a>
{% endblock %}