How can I change the default behavior in the markdown filter so that it transforms a newline to a br tag?
feedback
|
I don't think messing around with the newline syntax is a good idea ...I agree with Henrik's comment. From the markdown docs:
Have you looked at the other Django markup options, textile and restructuredtext? Their syntax might suit you better. but if you still want to ...A rough and ready method is to chain the markdown and linebreaksbr filters.
This runs the markdown filter, then the linebreaksbr filter, which replaces If you a better solution than that, you could
| |||||
|
feedback
|
|
EDIT: As of the end of June, 2011, the extension below is now included with Python Markdown. Here is a Markdown extension that I wrote and am currently testing on my site to do exactly what you want:
I put this in a file called mdx_nl2br.py and put it on my PYTHONPATH. You can then use it in a Django template like this:
If you'd like to use it in regular code, you can do something like this:
Here is the starting point in the docs for using and writing extensions. | |||||||||||||
feedback
|
|
You could write a custom filter that calls markdown, then does replace on its output. | |||
|
feedback
|
|
There appears to be a | |||
|
feedback
|