rubensworks / ScholarMarkdown

A framework for writing markdown-based scholarly articles.
MIT License
41 stars 9 forks source link

strikethrough does not work :( #19

Closed andimou closed 5 years ago

andimou commented 5 years ago

Even if I copy-paste the example from the wiki:

<strikethrough>This is a comment about the text. (RT)</strikethrough>

nothing happens, the text appears without any strike.h

rubensworks commented 5 years ago

You should use something like:

<del class="comment" data-author="RT">
This is something that must be deleted.
</del>

(you were probably looking at the output at https://github.com/rubensworks/ScholarMarkdown/wiki/Snippets)

Also, <strikethrough> is not a valid tag, but <strike> is, which you can also use (also fixed in the wiki now).

andimou commented 5 years ago

yes I was looking at the snippets.

Indeed <strike> works, thanks for the quick reply!