diff --git a/docs/.gitignore b/docs/.gitignore new file mode 100644 index 0000000000..017e4491d4 --- /dev/null +++ b/docs/.gitignore @@ -0,0 +1,2 @@ +_book +node_modules diff --git a/docs/README.md b/docs/README.md new file mode 100644 index 0000000000..3d07efe555 --- /dev/null +++ b/docs/README.md @@ -0,0 +1,2 @@ +# Introduction + diff --git a/docs/SUMMARY.md b/docs/SUMMARY.md new file mode 100644 index 0000000000..b42fd99e54 --- /dev/null +++ b/docs/SUMMARY.md @@ -0,0 +1,6 @@ +# Summary + +* [Introduction](README.md) +* [Core Concepts](concepts.md) +* Makers + * [AppX](packages/maker/appx/README.md) diff --git a/docs/book.json b/docs/book.json new file mode 100644 index 0000000000..360ef3a116 --- /dev/null +++ b/docs/book.json @@ -0,0 +1,11 @@ +{ + "plugins": ["theme-api", "panel"], + "pluginsConfig": { + "theme-api": { + "theme": "dark" + } + }, + "styles": { + "website": "styles/website.css" + } +} \ No newline at end of file diff --git a/docs/styles/website.css b/docs/styles/website.css new file mode 100644 index 0000000000..96a934da10 --- /dev/null +++ b/docs/styles/website.css @@ -0,0 +1,3 @@ +.gitbook-link { + display: none !important; +} \ No newline at end of file