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
See Showdown CHANGELOG for detail.
So I just modified the third last line in showdown-toc.js from if (typeof window !== 'undefined' && window.showdown && window.showdown.extensions) { window.showdown.extensions.toc = toc; }
to if (typeof window !== 'undefined' && window.showdown && window.showdown.extension) { window.showdown.extension("showdown-toc",toc); }
and initialize the converter with option { extensions: ['showdown-toc'] }, it works.
Hope this can help.
The text was updated successfully, but these errors were encountered:
See Showdown CHANGELOG for detail.
So I just modified the third last line in
showdown-toc.js
fromif (typeof window !== 'undefined' && window.showdown && window.showdown.extensions) { window.showdown.extensions.toc = toc; }
to
if (typeof window !== 'undefined' && window.showdown && window.showdown.extension) { window.showdown.extension("showdown-toc",toc); }
and initialize the converter with option
{ extensions: ['showdown-toc'] }
, it works.Hope this can help.
The text was updated successfully, but these errors were encountered: