clojure-ini
clojure-ini copied to clipboard
Read .ini-files into Clojure maps
Hi! First, thank you for a useful library! I'm writing a CLI application using Clojure and GraalVM. The application reads its config from an INI file. The problem is, GraalVM...
Add support of lists such as: [section] keyword[]=value1 keyword[]=value2 keyword[]=value3 keyword[]=value4
For example if I want define list of IP such as: [some-definition] ips[] = 192.168.0.1 ips[] = 192.168.0.2 ips[] = 192.168.0.3 I get only: :ips[] "192.168.0.3"
I've added several parsing options to parse hierarchies and lists that I've found in some ini files. Take a look at the test files to see what I mean. I'm...