Make unquote unescape formerly-captured quotemarks

This commit is contained in:
2026-03-02 23:35:29 -06:00
parent 1278a2a846
commit 6e1e44adb4

View File

@@ -16,6 +16,7 @@ export const stripQuotemarkLayer = (s: string, marks?: string[]): string => {
} }
s = s.substring(mark.length, s.length - mark.length) s = s.substring(mark.length, s.length - mark.length)
s = s.replaceAll(`\\${mark}`, mark)
break break
} }