diff --git a/modules/ui/markers-overview.js b/modules/ui/markers-overview.js index 8ed5bba5..5570ffb9 100644 --- a/modules/ui/markers-overview.js +++ b/modules/ui/markers-overview.js @@ -171,7 +171,7 @@ function overviewMarkers() { function exportMarkers() { const headers = "Id,Type,Icon,Name,Note,X,Y\n"; - const quote = s => '"' + s.replace('"', "'") + '"'; + const quote = s => '"' + s.replaceAll('"', '""') + '"'; const body = pack.markers.map(marker => { const {i, type, icon, x, y} = marker;