You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In ResolveUIDAndCaptionFilter.handle_captioned_image, the option:
'caption': newline_to_br(html_quote(caption))
Should be:
'caption': newline_to_br(caption)
Or else apostrophes (and probably other characters transformed by html_quote) are showed as html entities in the captions...
I fixed the issue by monkey-patching handle_captioned_image in my profile package, but that's sub-optimal...
(I won't fork the repo only to submit such a trivial fix)
Thanks for your attention.
The text was updated successfully, but these errors were encountered:
In ResolveUIDAndCaptionFilter.handle_captioned_image, the option:
'caption': newline_to_br(html_quote(caption))
Should be:
'caption': newline_to_br(caption)
Or else apostrophes (and probably other characters transformed by html_quote) are showed as html entities in the captions...
I fixed the issue by monkey-patching handle_captioned_image in my profile package, but that's sub-optimal...
(I won't fork the repo only to submit such a trivial fix)
Thanks for your attention.
The text was updated successfully, but these errors were encountered: