Skip to content

Commit

Permalink
✨ handle {@code } tags
Browse files Browse the repository at this point in the history
  • Loading branch information
ebullient committed Jan 20, 2024
1 parent d0eb558 commit c58c23d
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,7 @@ default String _replaceTokenText(String input, boolean nested) {
.replaceAll("\\{@comicH4 ([^}]+?)}", "$1")
.replaceAll("\\{@comicNote ([^}]+?)}", "$1")
.replaceAll("\\{@highlight ([^}]+?)}", "==$1==")
.replaceAll("\\{@code ([^}]+?)}", "`$1`")
.replaceAll("\\{@kbd ([^}]+?)}", "`$1`")
.replaceAll("\\{@b}", " ")
.replaceAll("\\{@i}", " ");
Expand Down

0 comments on commit c58c23d

Please sign in to comment.