The strikethrough text can be produced using the <del> tag.
Input
This text iscutby a line !
Striketrough- Applications
This tag has not got very many applications, but we will try to exemplify its use by the following example:
Input
A wedding list
We hope these info has been precious to you!
Input
<p>This text is <del>cut</del>by a line!</p>
OutputThis text is
Striketrough- Applications
This tag has not got very many applications, but we will try to exemplify its use by the following example:
Input
A wedding list
<ol>
<li>An Apple</li>
<li><del>Chess</del></li>
<li><del>Love</del></li>
</ol>
Output<ol>
<li>An Apple</li>
<li><del>Chess</del></li>
<li><del>Love</del></li>
</ol>
A wedding list
- An Apple
ChessLove
We hope these info has been precious to you!