summaryrefslogtreecommitdiff
path: root/postgresqleu/util/markup.py
blob: ab6012a178b12bd15fffc03f1428f66466088bf3 (plain)
1
2
3
4
5
6
7
import markdown


# We do pure markdown and don't bother doing any filtering on the content
# as for now anybody entering markdown is considered trusted.
def pgmarkdown(value):
    return markdown.markdown(value, extensions=['tables', ])