Coverage for website/builder/__init__.py: 100%

2 statements  

« prev     ^ index     » next       coverage.py v7.10.6, created at 2025-09-08 06:03 +0000

1""" 

2Website Build Package - Modular Website Build Architecture. 

3 

4This package provides comprehensive website building capabilities through modular components: 

5- core: Core WebsiteBuilder class with lifecycle management 

6- templates: Template loading and placeholder processing 

7- markdown: Markdown-to-HTML conversion with extensions 

8- assets: Asset management and static file handling 

9- navigation: Documentation navigation and TOC generation 

10- pages: Page building and content orchestration 

11- seo: SEO metadata, sitemaps, and optimization 

12- utils: Shared utilities and helper functions 

13""" 

14 

15# Re-export the main WebsiteBuilder class for backward compatibility 

16from .core import WebsiteBuilder 

17 

18__all__ = [ 

19 "WebsiteBuilder", 

20]