Skip to content

Commit ef62ba9

Browse files
committed
Fix bug related to "
1 parent d1343e8 commit ef62ba9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

md2sexpr.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import parser;
22
import std.string;
33
private string escape(string text) {
4-
return `"` ~ text.replace(`\`, `\\`).replace(`"`, `\\"`) ~ `"`;
4+
return `"` ~ text.replace(`\`, `\\`).replace(`"`, `\"`) ~ `"`;
55
}
66
struct ConvertToSExprEventHandler {
77
string start(string text) {

0 commit comments

Comments
 (0)