From 2859b23262c9eb42a89cb85935929f5cf9ebc86d Mon Sep 17 00:00:00 2001 From: SyedAhkam Date: Sat, 7 Oct 2023 01:49:32 +0530 Subject: [PATCH] feat: Initialize mdbook based docs --- docs/.gitignore | 1 + docs/book.toml | 6 ++++++ docs/src/SUMMARY.md | 3 +++ docs/src/introduction.md | 5 +++++ 4 files changed, 15 insertions(+) create mode 100644 docs/.gitignore create mode 100644 docs/book.toml create mode 100644 docs/src/SUMMARY.md create mode 100644 docs/src/introduction.md diff --git a/docs/.gitignore b/docs/.gitignore new file mode 100644 index 0000000..7585238 --- /dev/null +++ b/docs/.gitignore @@ -0,0 +1 @@ +book diff --git a/docs/book.toml b/docs/book.toml new file mode 100644 index 0000000..4b4fd3b --- /dev/null +++ b/docs/book.toml @@ -0,0 +1,6 @@ +[book] +title="Android CLI" +authors = ["Syed Ahkam"] +language = "en" +multilingual = false +src = "src" diff --git a/docs/src/SUMMARY.md b/docs/src/SUMMARY.md new file mode 100644 index 0000000..e0ff9f9 --- /dev/null +++ b/docs/src/SUMMARY.md @@ -0,0 +1,3 @@ +# Summary + +- [Introduction](./introduction.md) diff --git a/docs/src/introduction.md b/docs/src/introduction.md new file mode 100644 index 0000000..3d79791 --- /dev/null +++ b/docs/src/introduction.md @@ -0,0 +1,5 @@ +# Introduction + +Welcome to the documentation for Android CLI. + +Currently in development, stay tuned! \ No newline at end of file