Can anyone give me an idea or perhaps some references on how to create custom markups for django using textile or Markdown(or am I thinking wrong here)?
For example: I'd like to convert the following markups(the outer bracket mean they are grouped as one tag:
[
[Contacts]
* Contact #1
* Contact #2
* Contact #3
[Friend Requests]
* Jose
]
to have them converted to:
<div class="tabs">
<ul>
<li class="tab">Contacts</li>
<li>Contact #1</li>
(etc.. etc..)
</ul>
</div>
or is regex more recommended for my needs?