tini icon indicating copy to clipboard operation
tini copied to clipboard

Customizable parser

Open FreeCX opened this issue 4 years ago • 0 comments

Ini structure must support

variable comment character

let ini = Ini::new()
    .set_comment_symbol('#')
    .add_comment("comment line")
    .section("demo")
    .item("a", 1);

generate (after serialization)

# comment line
[demo]
a = 1

FreeCX avatar May 23 '21 15:05 FreeCX