-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmkdocs.yml
More file actions
51 lines (46 loc) · 1.27 KB
/
Copy pathmkdocs.yml
File metadata and controls
51 lines (46 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
site_name: moin2gitwiki
site_description: "Convert MoinMoin filesystem into github/gitlab/gitea type git based wiki"
site_url: "https://nigelm.github.io/moin2gitwiki/"
repo_url: "https://github.com/nigelm/moin2gitwiki"
repo_name: "moin2gitwiki"
nav:
- Overview: index.md
- Commands: commands.md
- Changelog: changelog.md
- Internal:
- CLI: internal/cli.md
- Context: internal/context.md
- Fetch Cache: internal/fetch_cache.md
- Git Revision: internal/gitrevision.md
- Moin To Markdown: internal/moin2markdown.md
- Users: internal/users.md
- Wiki Index: internal/wikiindex.md
theme:
name: material
features:
- navigation.instant
- navigation.expand
extra_css:
- css/mkdocstrings.css
markdown_extensions:
- pymdownx.highlight:
linenums_style: pymdownx.inline
- pymdownx.magiclink
- pymdownx.superfences
- markdown_include.include
- mkdocs-click
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
rendering:
show_source: true
selection:
new_path_syntax: yes
filters:
- "!^_" # exlude all members starting with _
watch:
- moin2gitwiki
# end