From: Gour <go...@at...> - 2016-12-23 09:30:52
|
Hello, I've a need for strikeout text in some of my blog posts that I migrate to Nikola static-site-generator using rst markup... I've the following in my post: +---------------------+ .. role:: strike :class: strike Here are few things to do: - :strike:`point which is already done in our `archive <http://www.example.com/archive/>` which contains mp3 files` - another point +-----------------+ but that does not work. If I replace the above hyperlink with: .. archive: httpi://www.example.com/archive and then write item list as: - :strike:`point which is already done in our archive_ which contains mp3 files` then the whole item's text is striked-out, but I lose the hyperlink for the 'archive'. Do you have any suggestion in rst for something simple as: +---------------------------+ Here are few things to do: - ~~point which is already done in our [archive]( <http://www.example.com/archive/) which contains mp3 files~~ - another point +------------------+ when written in Markdown and rendered as: <p>Here are few things to do:</p> <ul> <li><p><del>point which is already done in our <a href="%3Chttp://www.example.com/archive/">archive</a> which contains mp3 files</del></p></li> <li><p>another point</p></li> </ul> Sincerely, Gour -- When your intelligence has passed out of the dense forest of delusion, you shall become indifferent to all that has been heard and all that is to be heard. |