{% extends "admin/layout.html" %} {% block title %}{{ _("Markdown Parser Options") }}{% endblock %} {% block contents %}

{{ _("Markdown Parser Options") }}

{% trans mdext='http://www.freewisdom.org/projects/python-markdown/Available_Extensions' %} Markdown comes with several extensions to the basic markup syntax. You can enable them here by specifying one per line. The Markdown-Python site has a list of available extensions. {% endtrans %}

{{ _("Common Extensions") }}

abbr
{% trans more="http://www.freewisdom.org/projects/python-markdown/Abbreviations" %} Adds the ability to define abbreviations. Specifically, any defined abbreviation is wrapped in an <abbr> tag. More info. {% endtrans %}
def_list
{% trans more="http://www.freewisdom.org/projects/python-markdown/Definition_Lists" %} Adds the ability to create definition lists. More info. {% endtrans %}
fenced_code
{% trans more="http://www.freewisdom.org/projects/python-markdown/Fenced_Code_Blocks" %} Adds a secondary way to define code blocks which overcomes a few limitations of the standard indented code blocks. More info. {% endtrans %}
footnotes
{% trans more="http://www.freewisdom.org/projects/python-markdown/Footnotes" %} Adds footnote syntax. More info. {% endtrans %}
headerid
{% trans more="http://www.freewisdom.org/projects/python-markdown/HeaderId" %} Adds an ‘id’ attribute to HTML header elements (h1-h6) in Markdown’s output. More info. {% endtrans %}
tables
{% trans more="http://www.freewisdom.org/projects/python-markdown/Tables" %} Adds the ability to create tables in Markdown documents. More info. {% endtrans %}
extra
{% trans more="http://www.freewisdom.org/projects/python-markdown/Extra" %} Shortcut to load the abbr, def_list, fenced_code, footnotes, headerid and tables extensions. More info. {% endtrans %}
codehilite
{% trans more="http://www.freewisdom.org/projects/python-markdown/CodeHilite" %} Adds code/syntax highlighting to standard Markdown code blocks using Pygments. You must have the Zine Pygments Support plugin enabled for this to work. More info. {% endtrans %}
toc
{% trans more="http://www.freewisdom.org/projects/python-markdown/Table_of_Contents" %} Adds a Table of Contents to a Markdown document. More info. {% endtrans %}

{{ _("Configuration") }}

{% call form() %} {{ form.as_dl() }}
{% endcall %} {% endblock %}