rename mkdocs.py to mkdocs_renderer.py

This commit is contained in:
2026-01-21 16:04:02 +05:30
parent b1544c9610
commit 9a5e356039
11 changed files with 6 additions and 6 deletions

View File

@@ -0,0 +1,17 @@
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: ...