How to use html del tag in codeforces comment section ??
Thanks
# | User | Rating |
---|---|---|
1 | tourist | 3993 |
2 | jiangly | 3743 |
3 | orzdevinwang | 3707 |
4 | Radewoosh | 3627 |
5 | jqdai0815 | 3620 |
6 | Benq | 3564 |
7 | Kevin114514 | 3443 |
8 | ksun48 | 3434 |
9 | Rewinding | 3397 |
10 | Um_nik | 3396 |
# | User | Contrib. |
---|---|---|
1 | cry | 167 |
2 | Um_nik | 163 |
3 | maomao90 | 162 |
3 | atcoder_official | 162 |
5 | adamant | 159 |
6 | -is-this-fft- | 158 |
7 | awoo | 156 |
8 | TheScrasse | 154 |
9 | Dominater069 | 153 |
9 | nor | 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.