Skip to content

Commit 88aa01b

Browse files
committed
Start writing docs
1 parent 206ef97 commit 88aa01b

File tree

5 files changed

+34
-1
lines changed

5 files changed

+34
-1
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ which we parse using [regex](https://regular-expressions.info).
1313

1414
## Examples
1515

16-
See the [`examples`](examples) folder.
16+
See the [`examples`](https://github.com/mkdocstrings/vba/tree/master/examples) folder.
1717

1818
To build an example site:
1919

@@ -32,6 +32,7 @@ python -m unittest
3232
```
3333

3434
This will run all tests. This includes
35+
3536
- Unit tests from `tests/`.
3637
- Doctests from `mkdocstrings_vba/`.
3738
- Full builds from `examples/`.

docs/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
site/

docs/mkdocs.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
site_name: "mkdocstrings-vba"
2+
site_description: "A VBA handler for mkdocstrings."
3+
site_url: "https://mkdocstrings.github.io/vba"
4+
repo_url: "https://github.com/mkdocstrings/vba"
5+
repo_name: "mkdocstrings/vba"
6+
docs_dir: "src"
7+
watch:
8+
- ../README.md
9+
- mkdocs.yml
10+
- src
11+
copyright: Copyright © 2022 Rudolf Byker
12+
edit_uri: edit/master/docs/
13+
14+
nav:
15+
- Home: index.md
16+
- mkdocstrings: https://mkdocstrings.github.io/
17+
18+
theme:
19+
name: material
20+
features:
21+
- content.action.edit
22+
- content.action.view
23+
24+
markdown_extensions:
25+
- pymdownx.snippets:
26+
check_paths: True
27+
restrict_base_path: False

docs/requirements.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
mkdocs==1.*
2+
pymdown-extensions==10.*
3+
mkdocs-material==9.*

docs/src/index.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
--8<-- "../README.md"

0 commit comments

Comments
 (0)