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
Header blocks are rendering encoded . Reviewing the code shows it's written differently from how a Paragraph block is handled, for example.
I tried to fix this by subclassing the library and providing my own parseHeader() method, but with everything having a private visibility, this didn't work.
Are you open to pull-requests to fix these issues?
Change visibility from private to protected so that the library can be subclassed.
Fix the parseHeader() method.
The text was updated successfully, but these errors were encountered:
Header blocks are rendering encoded
. Reviewing the code shows it's written differently from how a Paragraph block is handled, for example.I tried to fix this by subclassing the library and providing my own
parseHeader()
method, but with everything having aprivate
visibility, this didn't work.Are you open to pull-requests to fix these issues?
private
toprotected
so that the library can be subclassed.parseHeader()
method.The text was updated successfully, but these errors were encountered: