I am using indefero,and its wiki use markdown as wiki syntax,and I found that markdown do not support Strikethrough ? Thanks!
<s> and <strike> have been deprecated since HTML 4.01. What HTML would you expect Markdown to generate? Something like? <p><span class="strike">This is wrong.</span> This is right.</p> or? <p><del>This is wrong.</del> This is right.</p> But the above should really make use of <ins> as well? <p><del>This is wrong.</del> <ins>This is right.</ins></p> This is well and truly beyond the scope of Markdown. Don't forget that HTML is a subset of Markdown, so any time you want to do something without corresponding Markdown syntax you can simply use HTML. So, you could have something like this? * first list item * second list item * <del>fifth</del> <ins>third</ins> list item which'd convert to? <ul> <li>first list item</li> <li>second list item</li> <li><del>fifth</del> <ins>third</ins> list item</li> </ul> David On 22 July 2010 22:11, Chunlin Zhang <zhangchunlin at gmail.com> wrote:> I am using indefero,and its wiki use markdown as wiki syntax,and I found > that > markdown do not support Strikethrough ? > Thanks! > > _______________________________________________ > Markdown-Discuss mailing list > Markdown-Discuss at six.pairlist.net > http://six.pairlist.net/mailman/listinfo/markdown-discuss >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://six.pairlist.net/pipermail/markdown-discuss/attachments/20100722/07192b93/attachment.html>
> I am using indefero,and its wiki use markdown as wiki syntax,and I found that > markdown do not support Strikethrough ?I think it would be difficult to find some syntax that's more comprehensible than doing <s>inline html markup</s> for strikethrough. *emphasis* is one thing, because there's a long tradition of using underscores and stars for emphasis, but there's not anything there except for ^H and ^W for strikethrough, and that's not widely enough used to make sense to a lot of people. -david parsons
David Chambers <david.chambers.05 <at> gmail.com> writes:> ?? ?* first list item > ?? ?* second list item > ?? ?* <del>fifth</del> <ins>third</ins> list itemI tested in indefero wiki and found that both <del></del> and <ins></ins> not work,or I should report issue to indefero. Thanks.
It may not allow raw HTML to be used. This is a limitation imposed by the implementation, not by Markdown itself. On 23 July 2010 13:36, Chunlin Zhang <zhangchunlin at gmail.com> wrote:> David Chambers <david.chambers.05 <at> gmail.com> writes: > > > * first list item > > * second list item > > * <del>fifth</del> <ins>third</ins> list item > I tested in indefero wiki and found that both <del></del> and <ins></ins> > not > work,or I should report issue to indefero. > > Thanks. > > _______________________________________________ > Markdown-Discuss mailing list > Markdown-Discuss at six.pairlist.net > http://six.pairlist.net/mailman/listinfo/markdown-discuss >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://six.pairlist.net/pipermail/markdown-discuss/attachments/20100723/30e11391/attachment.htm>
Arno Hautala <arno at alum.wpi.edu> wrote:> >>I wrote: >> >> I think it would be difficult to find some syntax that's more >> comprehensible than doing <s>inline html markup</s> for strikethrough. > >I could have sworn that this was done using dashes. >-Apparently that's not so.-But how do would you visually differentiate that markup from regular hyphens in text? (There are already cases -- the lowly underscore springs to mind -- where the reference markdown does the non-obvious thing.) -david parsons