Add superscript/strikethrough flags on markdown

This commit is contained in:
KMY 2023-03-04 21:15:22 +09:00
parent 5f477d21d1
commit 74c823d500
2 changed files with 6 additions and 0 deletions

View file

@ -87,6 +87,10 @@
color: $ui-secondary-color;
padding: 0 2px;
}
sup {
vertical-align: super;
}
}
.reply-indicator__content {

View file

@ -174,6 +174,8 @@ class TextFormatter
underline: true,
disable_indented_code_blocks: false,
fenced_code_blocks: true,
strikethrough: true,
superscript: true,
highlight: false
)
@markdown.render(html)