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
I have some options set with $showdownProvider.setOption('<property>', true);. Some of them work, some act as though the option is not being set. (Have not tested extensively, so these are only the options I'm using).
Broken
Option: setOption('underline', true);
Markdown
__text__
Expected Underlined "text" (does not display in GitHub)
I have some options set with
$showdownProvider.setOption('<property>', true);
. Some of them work, some act as though the option is not being set. (Have not tested extensively, so these are only the options I'm using).Broken
Option:
setOption('underline', true);
Markdown
Expected
Underlined "text" (does not display in GitHub)
Actual
"text"
Option:
setOption('simpleLineBreaks', true);
Markdown
Expected
"text
text"
Actual
"text text"
Working
(For sanity check purposes)
Option:
setOption('tables', true);
Markdown
Result
Option:
setOption('headerLevelStart', 2);
Markdown
Result (html)
The text was updated successfully, but these errors were encountered: