diff --git a/src/formatting/commands/textToXml.ts b/src/formatting/commands/textToXml.ts index 0b9dec0..cf6c4ef 100644 --- a/src/formatting/commands/textToXml.ts +++ b/src/formatting/commands/textToXml.ts @@ -23,6 +23,7 @@ export function textToXml(textEditor: TextEditor): void { .replace(/</g, "<") .replace(/>/g, ">") .replace(/&/g, "&") + // tslint:disable-next-line .replace(/"/g, '"') .replace(/'/g, "'");