md_test.py
import markdown
md = markdown.Markdown()
sample_makedown = '''
An h1 header
============
Paragraphs are separated by a blank line.
2nd paragraph. *Italic*, **bold**, `monospace`. Itemized lists
look like:
* this one
* that one
* the other one
'''
# makedown -> html
print md.convert(sample_makedown)
Le résultat d'impression est le suivant.
Résultat de sortie
<h1>An h1 header</h1>
<p>Paragraphs are separated by a blank line.</p>
<p>2nd paragraph. <em>Italic</em>, <strong>bold</strong>, <code>monospace</code>. Itemized lists
look like:</p>
<ul>
<li>this one</li>
<li>that one</li>
<li>the other one</li>
</ul>
Convertissez-le simplement comme ça Il convertit le texte Markdown en HTML. C'est très simple à utiliser. Il prend également en charge l'écriture dans des fichiers.
Lorsque je l'utilise avec Django, je vais créer moi-même le filtre suivant
myfilter.py
import markdown
#Déclarez et initialisez ici pour la mise en cache
md = markdown.Markdown()
@register.filter
@stringfilter
def mark2html(value):
return md.convert(value)
template.html
{% load myfilter %}
{{ markdown_text|mark2html }}
Recommended Posts