rendered MkDocs

This commit is contained in:
2026-01-20 20:25:46 +05:30
parent 102ea4e215
commit 65eb1b9fe8
12 changed files with 182 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
from __future__ import annotations
from pathlib import Path
from docforge.model import Project
class RendererConfig:
"""Renderer configuration container."""
def __init__(self, out_dir: Path, project: Project) -> None:
self.out_dir = out_dir
self.project = project