#94 maybe a fix, idk not tested

This commit is contained in:
Moritz Jung 2023-05-29 19:46:09 +02:00
parent e48963487b
commit cb97b57d02
3 changed files with 2154 additions and 1660 deletions

View file

@ -19,7 +19,7 @@ export class YAMLConverter {
} else if (typeof value === 'number') {
return value.toString();
} else if (typeof value === 'string') {
return '"' + value + '"';
return '"' + value.replace("\"", "\\\"") + '"';
} else if (typeof value === 'object') {
let output = '';