about summary refs log tree commit diff
path: root/tvix/docs
diff options
context:
space:
mode:
Diffstat (limited to 'tvix/docs')
-rw-r--r--tvix/docs/book.toml4
-rw-r--r--tvix/docs/default.nix2
2 files changed, 6 insertions, 0 deletions
diff --git a/tvix/docs/book.toml b/tvix/docs/book.toml
index 10a26f3ff4c0..a5dacc46ed69 100644
--- a/tvix/docs/book.toml
+++ b/tvix/docs/book.toml
@@ -15,6 +15,10 @@ command = "mdbook-admonish"
 after = ["links"] # ensure `{{#include}}` also gets processed
 assets_version = "3.0.2" # do not edit: managed by `mdbook-admonish install`
 
+[preprocessor.d2]
+command = "d2"
+after = ["links"] # ensure `{{#include}}` also gets processed
+
 [output]
 
 [output.html]
diff --git a/tvix/docs/default.nix b/tvix/docs/default.nix
index 27a253f3e311..3b102e4b7ce2 100644
--- a/tvix/docs/default.nix
+++ b/tvix/docs/default.nix
@@ -9,8 +9,10 @@ pkgs.stdenv.mkDerivation {
   src = lib.cleanSource ./.;
 
   nativeBuildInputs = [
+    pkgs.d2
     pkgs.mdbook
     pkgs.mdbook-admonish
+    pkgs.mdbook-d2
     pkgs.mdbook-plantuml
     pkgs.plantuml
   ];