Documentation (#7092)

This commit is contained in:
johnthagen 2024-04-24 10:03:58 -04:00 committed by GitHub
parent 5d29ddcf6e
commit dca9c27417
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -83,16 +83,16 @@ syntax, which is more convenient that directly using the corresponding
[`mark`][mark], [`ins`][ins] and [`del`][del] HTML tags: [`mark`][mark], [`ins`][ins] and [`del`][del] HTML tags:
``` title="Text with highlighting" ``` title="Text with highlighting"
- ==This was marked== - ==This was marked (highlight)==
- ^^This was inserted^^ - ^^This was inserted (underline)^^
- ~~This was deleted~~ - ~~This was deleted (strikethrough)~~
``` ```
<div class="result" markdown> <div class="result" markdown>
- ==This was marked== - ==This was marked (highlight)==
- ^^This was inserted^^ - ^^This was inserted (underline)^^
- ~~This was deleted~~ - ~~This was deleted (strikethrough)~~
</div> </div>