Tag parsing

4 bookmarks have this tag.

2025-12-31

2059.

2025-12-30

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`
}
2054.

2023-02-19

This page provides four different readability algorithms, implemented using the Open Source Markdown Editor Zettlr.

56.

2023-01-20

7.