@sean_kenny/eu4-text-file-to-json-parser-js
Advanced tools
Changelog
Version 0.1.3 - August 31st 2024
"
, .
, \
,
, and '
as valid characters in field values.rivers = "rivers.bmp"
to parse to "rivers": "\"rivers.bmp\""
instead of "rivers": "rivers.bmp"
Changelog
Version 0.1.2 - August 31st 2024
ship_names = { Advantage "Golden Lion" }
now parses to "ship_names": ["Advantage", "Golden Lion"]
instead of "ship_names": ["Advantage", "\"Golden", "Lion\""]
""
entries in arrays.Changelog
Version 0.1.1 - August 30th 2024
property_name = { ... }
. For example, tree = { 3 4 7 10 }
parses to "tree": ["3","4","7","10"]
Changelog
Version 0.1.0 - August 28th 2024
parseEu4TextFileToJson
which takes a text file in the general format that EU4 text files are formatted and converts it to JSON for easier use.