Chris Papademetrious
Chris Papademetrious
@matiasfrndz - This is indeed a bug. Thanks for reporting it! There is a heuristic (implemented by the `chomp()` function) to move leading/trailing whitespace from inside style/link tags to outside,...
@AlexVonB - I was also thinking along those lines, something like this: ```python prefix, text, suffix = re.match(r"^(\s*)(.*?)(\s*)$", text, flags=re.DOTALL).groups() ``` but then the question is, do we keep the...
@AlexVonB - after #162 is merged, I was thinking of cleaning up the string-joining code in `process_tag()` to improve whitespace cleanup when joining inline strings and newline cleanup when joining...
@jsm28 - thanks for pulling #95 into this. I think you're spot-on in how to proceed. Speaking for myself, I want to see #162 land first, then see if the...
Honest question - why would `markupsafe.escape()` be a better solution than `html.escape()` (given that `html` is included in the standard library)?
@dvarrazzo - thank you, this is great! I'd like to make a merge request to suggest some small grammatical fixes. For simplicity, I will submit it as a subsequent documentation...
@dvarrazzo - that was a kind way of saying "RTFM," thank you. :) The instructions were easy to follow. I tried the new functionality and it works great! I updated...
@dvarrazzo - I must defer the technical assessment to others, but if you are interested, I could contribute a light grammatical edit of the .rst content.
@kaichen - could you provide an example use case for this feature? I don't fully understand it from the pull request description.
I have mixed feelings about this. On one hand, I always appreciate a pull request contribution. And on the surface, this provides a nice convenience for this use case. But...