diff --git a/src/vm/commands/quote.ts b/src/vm/commands/quote.ts index 83c9c13..07ce5d1 100644 --- a/src/vm/commands/quote.ts +++ b/src/vm/commands/quote.ts @@ -16,6 +16,7 @@ export const stripQuotemarkLayer = (s: string, marks?: string[]): string => { } s = s.substring(mark.length, s.length - mark.length) + s = s.replaceAll(`\\${mark}`, mark) break }