aboutsummaryrefslogtreecommitdiffstats
path: root/pkg
AgeCommit message (Collapse)Author
2025-06-12Change doc parsing to only read YAML headerJP Appel
Fixes unintended YAML decode errors when a documents has a valid header but the rest of its contents are not valid YAML.
2025-06-12Fix comparison against wrong zero value for timesJP Appel
2025-06-12Add more date formats for parsingJP Appel
2025-06-11Fix attempts to insert when missing authors, links, or tagsJP Appel
2025-06-10Add method to merge subtrees in a clause treeJP Appel
Add `Flatten` method to `query.Clause` which merges a parent clause with its children. The merge occurs if clauses have the same operator. The merge transforms the tree similar to the examples below: (+ (+ (+ (+ a b) c) d) e) -> (+ a b c d e) (+ (+ a b) c (* d e)) -> (+ a b c (* d e))
2025-06-09Implement querylang parserJP Appel
2025-06-09Fix lookback error in lexerJP Appel
2025-05-28Add lexer for query dslJP Appel
2025-05-26Refactor db codeJP Appel
2025-05-05Remembered switch statements existJP Appel
2025-05-04Add names to doc fitlersJP Appel
2025-05-02Implement YAML header parsingJP Appel
Parses `title` and `tags` fields using default behavior. Custom parsing logic is used for `author` (single and multiauthor support), `date` (parses into `time.Time`), and meta (collects all other header fields into a YAML string).
2025-05-02Implement json outputJP Appel
2025-04-28Add document output formattingJP Appel
2025-04-27Large commit; many featuresJP Appel