diff --git a/docs/docs/img/favicon.ico b/docs/docs/img/favicon.ico new file mode 100644 index 0000000..0580a49 Binary files /dev/null and b/docs/docs/img/favicon.ico differ diff --git a/docs/docs/img/logo.svg b/docs/docs/img/logo.svg new file mode 100644 index 0000000..8a8c3ce --- /dev/null +++ b/docs/docs/img/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/docs/index.md b/docs/docs/index.md new file mode 100644 index 0000000..8cb96d7 --- /dev/null +++ b/docs/docs/index.md @@ -0,0 +1,11 @@ +# Welcome to QBI + +QBI is used to share data between AyaNova and QuickBooks desktop edition + +This online manual provides information on configuring and setting up the optional AyaNova QBI program and use of QBI features. + +It is recommended to familiarize yourself with the AyaNova program before using QBI - refer to the [AyaNova Help file](https://ayanova.com/docs) for details. + +--- + +
Documentation version: 8.0.0, Copyright © 2022 Ground Zero Tech-Works Inc.
diff --git a/docs/docs/test.md b/docs/docs/test.md new file mode 100644 index 0000000..b91fda2 --- /dev/null +++ b/docs/docs/test.md @@ -0,0 +1,3 @@ +# Test page + +## TEST PAGE diff --git a/docs/make-docs.bat b/docs/make-docs.bat new file mode 100644 index 0000000..1c097f2 --- /dev/null +++ b/docs/make-docs.bat @@ -0,0 +1,3 @@ +cd C:\data\code\ravenqbi\docs +mkdocs build -s +pause diff --git a/docs/mkdocs.yml b/docs/mkdocs.yml new file mode 100644 index 0000000..19c8b21 --- /dev/null +++ b/docs/mkdocs.yml @@ -0,0 +1,23 @@ +theme: + name: material + palette: + scheme: default + favicon: 'img/favicon.ico' + logo: 'img/logo.svg' + copyright: 'Copyright 2022 Ground Zero Tech-Works Inc.' +site_name: AyaNova QBI user manual +site_url: 'https://ayanova.com/qbi/docs' +site_dir: './release' +strict: true +# Extensions +markdown_extensions: + - pymdownx.highlight: + anchor_linenums: true + - pymdownx.superfences + - toc: + permalink: true + +nav: +- Home: 'index.md' +- 'test': 'test.md' + diff --git a/docs/serve-docs.bat b/docs/serve-docs.bat new file mode 100644 index 0000000..df4a4cb --- /dev/null +++ b/docs/serve-docs.bat @@ -0,0 +1,2 @@ +cd C:\data\code\ravenqbi\docs +mkdocs serve