Learn more about these different git repos.
Other Git URLs
For example, consider this line:
Here is the note from message one
When I choose to reply to the comment I get this:
> Here is the note from message one
Which renders properly as
With my reply here
But now when I reply I get this:
> Here is the note from message one > > With my reply here
Which renders as:
Here is the note from message one With my reply here
I think it should be this:
> > Here is the note from message one > > With my reply here
Which renders as
This is likely not going to be easy (if even possible) as I fear this built in python-markdown itself.
Metadata Update from @pingou: - Issue tagged with: RFE, wishful
Wouldn't you be able to do something like sed 's/^> /> > / on the input to python-markdown, assuming python-markdown does quoting internally?
sed 's/^> /> > /
We can work on this. The > are generated on frontside with javascript + regexp. We could change it to support multi > when needed
>
Commit 881c713 fixes this issue
Log in to comment on this ticket.