package
2.1.2+incompatible
Repository: https://github.com/urionz/ini.git
Documentation: pkg.go.dev

# 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

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.

# Structs

Parser definition.

# Type aliases

UserCollector custom data collector.