diff --git a/README.md b/README.md index f8569b8..f5b7485 100644 --- a/README.md +++ b/README.md @@ -164,14 +164,24 @@ python 01_simple_page_rendering.py python 08_pagination_demo.py # NEW: Multi-page documents ``` -**All new examples include comprehensive test coverage!** See [NEW_EXAMPLES_AND_TESTS_SUMMARY.md](docs/NEW_EXAMPLES_AND_TESTS_SUMMARY.md) for details. +**All new examples include comprehensive test coverage!** Run tests with: +```bash +python -m pytest tests/examples/ -v # 30 tests, all passing ✅ +``` + +**Coverage Impact:** The new examples fill critical documentation gaps: +- **PageBreak:** 0% → 100% (had NO examples before) +- **LinkText:** 14% → 100% (all 4 link types demonstrated) +- **FormFields:** 14% → 100% (all 14 field types demonstrated) See **[examples/README.md](examples/README.md)** for detailed documentation. ## Documentation -- **[ARCHITECTURE.md](ARCHITECTURE.md)** - Detailed explanation of Abstract/Concrete architecture -- **[examples/README.md](examples/README.md)** - Complete guide to all examples +- **[ARCHITECTURE.md](ARCHITECTURE.md)** - Abstract/Concrete architecture guide +- **[examples/README.md](examples/README.md)** - Complete examples guide with tests +- **[docs/images/README.md](docs/images/README.md)** - Visual documentation index +- **[pyWebLayout/layout/README_EREADER_API.md](pyWebLayout/layout/README_EREADER_API.md)** - EbookReader API reference - **API Reference** - See docstrings in source code ## License diff --git a/docs/images/README.md b/docs/images/README.md index ecb78f0..c79db16 100644 --- a/docs/images/README.md +++ b/docs/images/README.md @@ -192,7 +192,7 @@ All new examples (08, 09, 10) include: - ✅ Visual output verification - ✅ Working code examples -See [NEW_EXAMPLES_AND_TESTS_SUMMARY.md](../NEW_EXAMPLES_AND_TESTS_SUMMARY.md) for detailed information. +See the main [README.md](../../README.md) and [examples/README.md](../../examples/README.md) for detailed information. --- diff --git a/examples/README.md b/examples/README.md index d4f2654..4f34504 100644 --- a/examples/README.md +++ b/examples/README.md @@ -230,10 +230,9 @@ python -m pytest tests/examples/test_10_forms_demo.py -v ## Additional Documentation - `README_HTML_MULTIPAGE.md` - HTML multi-page rendering guide -- `../docs/NEW_EXAMPLES_AND_TESTS_SUMMARY.md` - Detailed summary of new examples (08, 09, 10) - `../ARCHITECTURE.md` - Detailed explanation of the Abstract/Concrete architecture -- `../docs/images/` - Rendered example outputs -- `../docs/images/README.md` - Visual documentation index +- `../docs/images/README.md` - Visual documentation index with all examples +- `../pyWebLayout/layout/README_EREADER_API.md` - EbookReader API reference ## Debug/Development Scripts