OCaml library for JSONfeed parsing and creation

update README

Changed files
+11 -1
+11 -1
README.md
···
- **feed_example.ml** - Creating and serializing feeds (blog and podcast)
- **feed_parser.ml** - Parsing and analyzing feeds from files
- **feed_validator.ml** - Validating feeds and demonstrating various feed types
+
- **feed_echo.ml** - Round-trip parsing: reads a feed from stdin and outputs to stdout
Run examples:
```bash
-
opam exec -- dune exec -- ./example/feed_parser.exe
+
# Create and display sample feeds
opam exec -- dune exec -- ./example/feed_example.exe
+
+
# Parse and analyze a feed file
+
opam exec -- dune exec -- ./example/feed_parser.exe path/to/feed.json
+
+
# Validate feeds
+
opam exec -- dune exec -- ./example/feed_validator.exe
+
+
# Test round-trip parsing
+
cat feed.json | opam exec -- dune exec -- ./example/feed_echo.exe
```
## API Documentation