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
Partial URLs containing only one slash and no periods cause the Javascript to blow up. E.g. [example](/example)
produces a Javascript error in mmdCSSclass because urlTmp only has one element, so you try to access urlTemp[-1]
Actually [example](example)
is perfectly valid too, and would blow up earlier because urlTemp[1] does not exist
It looks like this is only trying to set a class on links, so I can probably work round this with strict=true, but that's not in your documentation.
The text was updated successfully, but these errors were encountered:
Partial URLs containing only one slash and no periods cause the Javascript to blow up. E.g.
[example](/example)
produces a Javascript error in mmdCSSclass because urlTmp only has one element, so you try to access urlTemp[-1]
Actually
[example](example)
is perfectly valid too, and would blow up earlier because urlTemp[1] does not exist
It looks like this is only trying to set a class on links, so I can probably work round this with strict=true, but that's not in your documentation.
The text was updated successfully, but these errors were encountered: