Skip to content

Commit

Permalink
Improved tests
Browse files Browse the repository at this point in the history
  • Loading branch information
grzesiek2010 committed Aug 25, 2023
1 parent aef23ba commit 561b599
Showing 1 changed file with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,13 @@ public void markDownToHtmlEscapesBackslash() {
{"_A\\_B\\_C_", "<em>A_B_C</em>"},
{"A_B\\_C", "A_B_C"},
{"A\\_B_C", "A_B_C"},
{"A_B_C", "A<em>B</em>C"},
{"\\__AB\\__", "_<em>AB_</em>"},
{"\\\\_AB\\_\\\\_", "\\<em>AB_\\</em>"},
{"A_B_C", "A_B_C"},
{"A _B_ C", "A <em>B</em> C"},
{"A_B_ C", "A_B_ C"},
{"A _B_C", "A _B_C"},
{"_A_", "<em>A</em>"},
{"\\_ _AB\\__", "_ <em>AB_</em>"},
{"\\\\ _AB\\_\\\\_", "\\ <em>AB_\\</em>"},
{"A\\*B\\*C", "A*B*C"},
{"*A\\*B\\*C*", "<em>A*B*C</em>"},
{"A*B\\*C", "A*B*C"},
Expand Down

0 comments on commit 561b599

Please sign in to comment.