wj-mkdocs 1.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- wj_mkdocs/__init__.py +1 -0
- wj_mkdocs/__main__.py +30 -0
- wj_mkdocs/_version.py +1 -0
- wj_mkdocs/argbuilder.py +1423 -0
- wj_mkdocs/main.py +81 -0
- wj_mkdocs/themes/__init__.py +1 -0
- wj_mkdocs/themes/theme_std/.icons/__init__.py +1 -0
- wj_mkdocs/themes/theme_std/.icons/blanklogo.svg +7 -0
- wj_mkdocs/themes/theme_std/__init__.py +1 -0
- wj_mkdocs/themes/theme_std/iframe-worker.js +1 -0
- wj_mkdocs/themes/theme_std/partials/__init__.py +1 -0
- wj_mkdocs/themes/theme_std/partials/header.html +57 -0
- wj_mkdocs/themes/theme_std/partials/javascripts/palette.html +45 -0
- wj_mkdocs/themes/theme_std/std-theme.yml +63 -0
- wj_mkdocs/version.py +12 -0
- wj_mkdocs-1.0.0.dist-info/METADATA +88 -0
- wj_mkdocs-1.0.0.dist-info/RECORD +20 -0
- wj_mkdocs-1.0.0.dist-info/WHEEL +4 -0
- wj_mkdocs-1.0.0.dist-info/entry_points.txt +2 -0
- wj_mkdocs-1.0.0.dist-info/licenses/LICENSE +24 -0
wj_mkdocs/__init__.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
wj_mkdocs/__main__.py
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# ----------------------------------------------------------------------------------------
|
|
2
|
+
# Entry Point
|
|
3
|
+
# -----------
|
|
4
|
+
#
|
|
5
|
+
# Verifies correct Python version and starts main
|
|
6
|
+
#
|
|
7
|
+
# (c) 2026 WaterJuice — Released under the Unlicense; see LICENSE.
|
|
8
|
+
#
|
|
9
|
+
# Version History
|
|
10
|
+
# ---------------
|
|
11
|
+
# May 2026 - Created
|
|
12
|
+
# ----------------------------------------------------------------------------------------
|
|
13
|
+
|
|
14
|
+
# ----------------------------------------------------------------------------------------
|
|
15
|
+
# Python Check
|
|
16
|
+
# ----------------------------------------------------------------------------------------
|
|
17
|
+
|
|
18
|
+
import sys
|
|
19
|
+
|
|
20
|
+
if sys.version_info < (3, 12):
|
|
21
|
+
print("Requires python 3.12 or greater", file=sys.stderr)
|
|
22
|
+
exit(1)
|
|
23
|
+
|
|
24
|
+
# ----------------------------------------------------------------------------------------
|
|
25
|
+
# Entry
|
|
26
|
+
# ----------------------------------------------------------------------------------------
|
|
27
|
+
|
|
28
|
+
from . import main
|
|
29
|
+
|
|
30
|
+
exit(main.main(sys.argv[1:]))
|
wj_mkdocs/_version.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "1.0.0"
|