Skip to content

Commit

Permalink
Simplify
Browse files Browse the repository at this point in the history
  • Loading branch information
rikhuijzer committed Jun 4, 2024
1 parent bf4252f commit 55d7975
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/html.jl
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ function _patch_dollar_symbols(body::String)::String
for i in 1:length(lines)
line = lines[i]
if !(contains(line, "<pre>") || contains(line, "<code>"))
lines[i] = replace(line, "&#36;" => "\\\$")
lines[i] = replace(line, "&#36;" => raw"\$")
end
end
return join(lines, '\n')
Expand Down

0 comments on commit 55d7975

Please sign in to comment.