Tag parsing
4 bookmarks have this tag.
4 bookmarks have this tag.
type INI struct {
Properties []*Property `@@*`
Sections []*Section `@@*`
}
type Section struct {
Identifier string `"[" @Ident "]"`
Properties []*Property `@@*`
}
type Property struct {
Key string `@Ident "="`
Value *Value `@@`
}
type Value struct {
String *string ` @String`
Float *float64 `| @Float`
Int *int `| @Int`
}
This page provides four different readability algorithms, implemented using the Open Source Markdown Editor Zettlr.