How to use html del tag in codeforces comment section ??
Thanks
# | User | Rating |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3823 |
3 | Benq | 3738 |
4 | Radewoosh | 3633 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3390 |
10 | gamegame | 3386 |
# | User | Contrib. |
---|---|---|
1 | cry | 167 |
2 | maomao90 | 163 |
2 | Um_nik | 163 |
4 | atcoder_official | 161 |
5 | adamant | 159 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
9 | nor | 153 |
9 | Dominater069 | 153 |
How to use html del tag in codeforces comment section ??
Thanks
Name |
---|
If there's direct support for this in the flavor of Markdown Codeforces comments use, I'm not aware of it. Using
~
doesn't seem to work:~~test~~
I thought it was possible to use the combining-strike-through Unicode character U+0336 to achieve a similar effect, since I've done so in the past, but it seems to give the error "Field should contain simple text" when I now try to post a comment containing it. Of course, that's also a rather inconvenient input format, albeit one that's easy to automate.
EDIT: Aha! It's possible when editing a comment, but not when first posting a comment. T̶h̶e̶ ̶r̶e̶s̶u̶l̶t̶ ̶l̶o̶o̶k̶s̶ ̶s̶o̶m̶e̶t̶h̶i̶n̶g̶ ̶l̶i̶k̶e̶ ̶t̶h̶i̶s̶. Is this a bug? Is MikeMirzayanov the right person to tag with this question?
<del>
doesn't seem to work, but<s>
does.This line uses
<del>
This line uses<s>
Judging by the fact that
<del>
doesn't even appear in the page source, I am guessing that there is some list of "allowed" HTML tags. For example,<script>
should obviously not be allowed.