I have a xls with some data, which i need to correct. For example: fix common typos, replace '4 parts' with 'four parts' etc.
Replacement rules are big key=>value arrays. So i just loop through them and do replacements.
I'd like to store those rules in single .yml files and load them in arrays as soon as my macro starts. I think it's easiest way to maintain them, because they are updated frequently. Unfortunately, vba seems to not have yaml parser.
Is there another way to keep my configuration beyond the macro?