From 60f474cef4f82d88746e596b5e64b59ad2f64fc2 Mon Sep 17 00:00:00 2001 From: Aaron Crawfis Date: Wed, 16 Dec 2020 13:21:03 -0800 Subject: [PATCH] Add python submodule and mount --- daprdocs/config.toml | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) diff --git a/daprdocs/config.toml b/daprdocs/config.toml index 127ca3edf..f0e152602 100644 --- a/daprdocs/config.toml +++ b/daprdocs/config.toml @@ -2,14 +2,13 @@ baseURL = "https://v1-rc2.docs.dapr.io/" title = "Dapr Docs" theme = "docsy" +disableFastRender = true enableRobotsTXT = true enableGitInfo = true # Language Configuration languageCode = "en-us" -contentDir = "content/en" -defaultContentLanguage = "en" # Disable categories & tags disableKinds = ["taxonomy", "term"] @@ -18,6 +17,30 @@ disableKinds = ["taxonomy", "term"] [services.googleAnalytics] id = "UA-149338238-3" +# Mounts +[module] + [[module.mounts]] + source = "content/en" + target = "content" + [[module.mounts]] + source = "static" + target = "static" + [[module.mounts]] + source = "layouts" + target = "layouts" + [[module.mounts]] + source = "data" + target = "data" + [[module.mounts]] + source = "assets" + target = "assets" + [[module.mounts]] + source = "archetypes" + target = "archetypes" + [[module.mounts]] + source = "../sdkdocs/python/daprdocs/content" + target = "content/developing-applications/sdks/python" + # Markdown Engine - Allow inline html [markup] [markup.goldmark]