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
fix: apply escape flag to a user-supplied HTML renderer
create_markdown() only passed the escape flag to the renderer it built
itself, so passing escape=False together with a custom HTMLRenderer
subclass silently left HTML escaped.
escape now defaults to None, meaning 'keep the renderer's own setting',
and an explicit True/False is applied to a supplied HTMLRenderer
instance as well.
Closes#420
0 commit comments