- Rename docforge.loader → docforge.loaders and docforge.model → docforge.models - Update all imports, type stubs, CLI, tests, and documentation references - Align MkDocs navigation and docforge.nav.yml with new package structure - Adjust module docstrings and comments for consistency with pluralized naming
18 lines
413 B
Python
18 lines
413 B
Python
from pathlib import Path
|
|
from typing import Set
|
|
|
|
from docforge.models import Project, Module
|
|
|
|
|
|
class MkDocsRenderer:
|
|
name: str
|
|
|
|
def generate_sources(self, project: Project, out_dir: Path) -> None: ...
|
|
def _write_module(
|
|
self,
|
|
module: Module,
|
|
packages: Set[str],
|
|
out_dir: Path,
|
|
) -> None: ...
|
|
def _render_markdown(self, title: str, module_path: str) -> str: ...
|