diff --git a/anki/importing/noteimp.py b/anki/importing/noteimp.py index bbdc61acd..14eb439b8 100644 --- a/anki/importing/noteimp.py +++ b/anki/importing/noteimp.py @@ -125,7 +125,7 @@ class NoteImporter(Importer): for n in notes: for c in range(len(n.fields)): if not self.allowHTML: - n.fields[c] = html.escape(n.fields[c]) + n.fields[c] = html.escape(n.fields[c], quote=False) n.fields[c] = n.fields[c].strip() if not self.allowHTML: n.fields[c] = n.fields[c].replace("\n", "
")