Opened 16 years ago

Last modified 12 years ago

#6182 closed

python-markdown2 support in markup — at Version 3

Reported by: John Downey <jdowney@…> Owned by: nobody
Component: contrib.markup Version: dev
Severity: Normal Keywords: markdown markup
Cc: Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: yes
Easy pickings: no UI/UX: no

Description (last modified by Malcolm Tredinnick)

This is a patch to allow the usage of the python-markdown2 library in place of the original markdown library. They claim better performance but I just believe it should be an option.

Change History (4)

by John Downey <jdowney@…>, 16 years ago

Attachment: markdown2.patch added

patch to allow use of python-markdown2 in place of python-markdown

comment:1 by Simon Greenhill <dev@…>, 16 years ago

Triage Stage: UnreviewedDesign decision needed

comment:2 by Malcolm Tredinnick, 16 years ago

Description: modified (diff)
Patch needs improvement: set
Triage Stage: Design decision neededAccepted

For backwards compatibility purposes, it should probably behave exactly as it does now by default. That is, uses the markdown module if it is installed. There's no guarantee that markdown2 and markdown will produce exactly the same output in all cases (in fact, they don't).

Given how trivial it is to write a filter like this, it's not completely clear we need to include this, but it's not too harmful, providing it's the second option chosen.

comment:3 by Malcolm Tredinnick, 16 years ago

Description: modified (diff)

Somehow I screwed up the description. Fixing. :-(

Note: See TracTickets for help on using tickets.
Back to Top