# README
INI Parser
This is a parser for parse INI format content to golang data
parser is ref the project: https://github.com/dombenson/go-ini, Thank you very much
Ref
- go-ini/ini ini parser and config manage
- dombenson/go-ini ini parser and config manage
License
MIT
# Functions
Decode INI content to golang data.
Encode golang data to INI.
EncodeFull full mode data to INI.
EncodeSimple data to INI.
IgnoreCase set ignore-case.
NewFulled create a full mode Parser with some options.
NewSimpled create a simple mode Parser.
NoDefSection set don't return DefSection title Usage: Parser.NewWithOptions(ini.ParseEnv).
Parse a INI data string to golang.
# Constants
DefSection default section key name.
mode of parse data ModeFull - will parse array ModeSimple - don't parse array value.
mode of parse data ModeFull - will parse array ModeSimple - don't parse array value.
# Variables
TagName default tag-name of mapping data to struct.
# Type aliases
UserCollector custom data collector.