I had a little spare time to do some work on postmarkup.py, my BBCode module. It now handles Unicode correctly, which was a big omission, considering its intended use. I also added a few other features. The tag parameter string can now be specified in 3(!) different ways. For example, the following 3 lines are equivalent.
[link="http://www.willmcgugan.com"]My homepage[/link]
[link http://www.willmcgugan.com]My homepage[/link]
Another addition, is an [img]
tag.
There is also support for lists (ordered and un-ordered), with the phpbb syntax. For example:
[*]Apples
[*]Oranges
[*]Pears
[/list]
This produces an un-ordered list. continue reading…