OCaml library for JSONfeed parsing and creation

update README

+11 -1
+11 -1
README.md
··· 133 133 - **feed_example.ml** - Creating and serializing feeds (blog and podcast) 134 134 - **feed_parser.ml** - Parsing and analyzing feeds from files 135 135 - **feed_validator.ml** - Validating feeds and demonstrating various feed types 136 + - **feed_echo.ml** - Round-trip parsing: reads a feed from stdin and outputs to stdout 136 137 137 138 Run examples: 138 139 139 140 ```bash 140 - opam exec -- dune exec -- ./example/feed_parser.exe 141 + # Create and display sample feeds 141 142 opam exec -- dune exec -- ./example/feed_example.exe 143 + 144 + # Parse and analyze a feed file 145 + opam exec -- dune exec -- ./example/feed_parser.exe path/to/feed.json 146 + 147 + # Validate feeds 148 + opam exec -- dune exec -- ./example/feed_validator.exe 149 + 150 + # Test round-trip parsing 151 + cat feed.json | opam exec -- dune exec -- ./example/feed_echo.exe 142 152 ``` 143 153 144 154 ## API Documentation