---------------------------------------------------------------------- This is the API documentation for the gdtest_site_combo library. ---------------------------------------------------------------------- ## Functions Public functions setup(config: dict) -> None Set up the site with the given configuration. Parameters ---------- config : dict A dictionary of site configuration options. Returns ------- None Examples -------- >>> setup({"theme": "cosmo"}) render(template: str) -> str Render a template into HTML. Parameters ---------- template : str The template string to render. Returns ------- str The rendered HTML output. Examples -------- >>> render("

Title

") '

Title

' publish(site: str) -> bool Publish the site to the given destination. Parameters ---------- site : str The site name or URL to publish to. Returns ------- bool True if publishing was successful. Examples -------- >>> publish("my-site") True