pub fn parse_ini(text: &str) -> HashMap<String, HashMap<String, Option<String>>>
Parses an INI string into a simple nested map structure: HashMap<section, HashMap<key, Option<value>>>.
HashMap<section, HashMap<key, Option<value>>>
Style/indentation are not preserved.