diff --git a/content/other.md b/content/other.md index e69de29..64129af 100644 --- a/content/other.md +++ b/content/other.md @@ -0,0 +1,12 @@ +# Other + +```kroki-blockdiag no-transparency=false +blockdiag { + blockdiag -> generates -> "block-diagrams"; + blockdiag -> is -> "very easy!"; + + blockdiag [color = "greenyellow"]; + "block-diagrams" [color = "pink"]; + "very easy!" [color = "orange"]; +} +``` diff --git a/mkdocs.yml b/mkdocs.yml index 73fcd86..802edd1 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,6 +1,7 @@ site_name: Site docs_dir: content strict: true +site_url: "" theme: name: null @@ -14,3 +15,9 @@ hooks: markdown_extensions: - attr_list + +plugins: + - kroki: + DownloadImages: true + DownloadDir: assets/kroki-generated + - search diff --git a/requirements.txt b/requirements.txt index ce90b6e..cdde1d6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,3 @@ mkdocs jinja2-simple-tags +mkdocs-kroki-plugin