From 22a052482333f344a11661cc9f9e1cc63b616956 Mon Sep 17 00:00:00 2001 From: Vishesh 'ironeagle' Bangotra Date: Sun, 13 Sep 2026 18:23:35 +0530 Subject: [PATCH] chore: drop root mkdocs.yml; adopt per-kind docs/mkdocs.lib.yml as source of truth --- mkdocs.yml => docs/mkdocs.lib.yml | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) rename mkdocs.yml => docs/mkdocs.lib.yml (84%) diff --git a/mkdocs.yml b/docs/mkdocs.lib.yml similarity index 84% rename from mkdocs.yml rename to docs/mkdocs.lib.yml index 3588ef6..42ea310 100644 --- a/mkdocs.yml +++ b/docs/mkdocs.lib.yml @@ -52,7 +52,7 @@ plugins: handlers: python: paths: - - . + - .. options: docstring_style: google show_source: false @@ -67,20 +67,21 @@ plugins: show_object_full_path: false show_symbol_type_heading: true site_name: omniread -docs_dir: docs +docs_dir: lib +site_dir: ../site/lib nav: -- Home: lib/index.md +- Home: index.md - Core API: - - lib/core/index.md - - lib/core/content.md - - lib/core/parser.md - - lib/core/scraper.md + - core/index.md + - core/content.md + - core/parser.md + - core/scraper.md - HTML Handling: - - lib/html/index.md - - lib/html/parser.md - - lib/html/scraper.md + - html/index.md + - html/parser.md + - html/scraper.md - PDF Handling: - - lib/pdf/index.md - - lib/pdf/client.md - - lib/pdf/parser.md - - lib/pdf/scraper.md + - pdf/index.md + - pdf/client.md + - pdf/parser.md + - pdf/scraper.md