Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-04-13 | atom, json, mbox: fix reading past the buffer with an escaped NUL byte (\ NUL) | Hiltjo Posthuma | |
This would skip checking the end of the string of checking a NUL byte, because the iteration was done before checking it. It would proceed into the data that comes after. Note that sfeed itself can't generate such malformed data itself. Example input: 0 title link content\ html Would incorrect print "contenthtml" as the content. | |||
2023-04-10 | sfeed_json: add JSON output format tool | Hiltjo Posthuma | |
This outputs the TSV data to JSON. It uses a subset of JSON Feed 1.1: https://www.jsonfeed.org/version/1.1/ |