From 51646dfee05d548926fe850026f92f5dd83b76b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Sat, 5 Mar 2022 11:04:13 -0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Add=20Jina's=20QA=20Bot=20to=20t?= =?UTF-8?q?he=20docs=20to=20help=20people=20that=20want=20to=20ask=20quick?= =?UTF-8?q?=20questions=20(#368)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: yanlong.wang Co-authored-by: Han Xiao --- docs/overrides/main.html | 29 +++++++++++++++++++++++++++++ mkdocs.yml | 1 + 2 files changed, 30 insertions(+) create mode 100644 docs/overrides/main.html diff --git a/docs/overrides/main.html b/docs/overrides/main.html new file mode 100644 index 0000000..92574b9 --- /dev/null +++ b/docs/overrides/main.html @@ -0,0 +1,29 @@ +{% extends "base.html" %} +{%- block scripts %} +{{ super() }} + + + +
+
You can ask questions about Typer. Try:
+
How can I terminate a program?
+
How to launch applications?
+
How to add help to CLI argument?
+
+
+{%- endblock %} diff --git a/mkdocs.yml b/mkdocs.yml index ca6cf0d..aa185ea 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -4,6 +4,7 @@ site_url: https://typer.tiangolo.com/ theme: name: material + custom_dir: docs/overrides palette: primary: black accent: teal