How do I process wiki markup in a Django template?
I have CharFields with content like ([email:bob@bob.com email], [http://bob.com website])
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You’ll need to use something that parses wiki markup. Have a look at the markup module.
It looks pretty straightforward – include
django.contrib.markupin the INSTALLED_APPS section of your settings.py then load markup into the template with{% load markup %}. After that you can use the markup tags and filters.It look like there’s lots of other options out there. Try searching ‘parse wiki markup’ instead of ‘process wiki markup’. I came across this SO Question you might find helpful.