OCaml library for JSONfeed parsing and creation

update README

+11 -1
+11 -1
README.md
··· 133 - **feed_example.ml** - Creating and serializing feeds (blog and podcast) 134 - **feed_parser.ml** - Parsing and analyzing feeds from files 135 - **feed_validator.ml** - Validating feeds and demonstrating various feed types 136 137 Run examples: 138 139 ```bash 140 - opam exec -- dune exec -- ./example/feed_parser.exe 141 opam exec -- dune exec -- ./example/feed_example.exe 142 ``` 143 144 ## API Documentation
··· 133 - **feed_example.ml** - Creating and serializing feeds (blog and podcast) 134 - **feed_parser.ml** - Parsing and analyzing feeds from files 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 137 138 Run examples: 139 140 ```bash 141 + # Create and display sample feeds 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 152 ``` 153 154 ## API Documentation