Skip to content

Commit

Permalink
UI pretty printer fix: banana and mustache brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
smitsch committed Nov 23, 2022
1 parent 02d3020 commit 67dc179
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ trait HTMLPrinter {
"!=" -> "≠",
"!" -> "¬",
"|" -> "∨",
"(∨" -> "(|", // undo opening banana rewrite
"∨)" -> "|)", // undo closing banana rewrite
"{∨" -> "{|", // undo opening mustache rewrite
"∨}" -> "|}", // undo closing mustache rewrite
"<->" -> "&#8596;",
"->" -> "&rarr;",
"<=" -> "&leq;",
Expand Down

0 comments on commit 67dc179

Please sign in to comment.