How to use html del tag in codeforces comment section ??
Thanks
# | User | Rating |
---|---|---|
1 | jiangly | 3976 |
2 | tourist | 3815 |
3 | jqdai0815 | 3682 |
4 | ksun48 | 3614 |
5 | orzdevinwang | 3526 |
6 | ecnerwala | 3514 |
7 | Benq | 3482 |
8 | hos.lyric | 3382 |
9 | gamegame | 3374 |
10 | heuristica | 3357 |
# | User | Contrib. |
---|---|---|
1 | cry | 169 |
2 | -is-this-fft- | 166 |
3 | Um_nik | 161 |
3 | atcoder_official | 161 |
5 | djm03178 | 157 |
6 | Dominater069 | 156 |
7 | adamant | 154 |
8 | luogu_official | 152 |
9 | awoo | 151 |
10 | TheScrasse | 147 |
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.