properdocs-theme-mkdocs 1.6.5__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.
Files changed (53) hide show
  1. properdocs_theme_mkdocs/404.html +12 -0
  2. properdocs_theme_mkdocs/__init__.py +1 -0
  3. properdocs_theme_mkdocs/base.html +251 -0
  4. properdocs_theme_mkdocs/content.html +9 -0
  5. properdocs_theme_mkdocs/css/base.css +366 -0
  6. properdocs_theme_mkdocs/css/bootstrap.min.css +12 -0
  7. properdocs_theme_mkdocs/css/bootstrap.min.css.map +1 -0
  8. properdocs_theme_mkdocs/css/brands.min.css +6 -0
  9. properdocs_theme_mkdocs/css/fontawesome.min.css +9 -0
  10. properdocs_theme_mkdocs/css/solid.min.css +6 -0
  11. properdocs_theme_mkdocs/css/v4-font-face.min.css +6 -0
  12. properdocs_theme_mkdocs/img/favicon.ico +0 -0
  13. properdocs_theme_mkdocs/img/grid.png +0 -0
  14. properdocs_theme_mkdocs/js/base.js +287 -0
  15. properdocs_theme_mkdocs/js/bootstrap.bundle.min.js +7 -0
  16. properdocs_theme_mkdocs/js/bootstrap.bundle.min.js.map +1 -0
  17. properdocs_theme_mkdocs/js/darkmode.js +65 -0
  18. properdocs_theme_mkdocs/keyboard-modal.html +40 -0
  19. properdocs_theme_mkdocs/locales/de/LC_MESSAGES/messages.mo +0 -0
  20. properdocs_theme_mkdocs/locales/es/LC_MESSAGES/messages.mo +0 -0
  21. properdocs_theme_mkdocs/locales/fa/LC_MESSAGES/messages.mo +0 -0
  22. properdocs_theme_mkdocs/locales/fr/LC_MESSAGES/messages.mo +0 -0
  23. properdocs_theme_mkdocs/locales/id/LC_MESSAGES/messages.mo +0 -0
  24. properdocs_theme_mkdocs/locales/it/LC_MESSAGES/messages.mo +0 -0
  25. properdocs_theme_mkdocs/locales/ja/LC_MESSAGES/messages.mo +0 -0
  26. properdocs_theme_mkdocs/locales/nb/LC_MESSAGES/messages.mo +0 -0
  27. properdocs_theme_mkdocs/locales/nl/LC_MESSAGES/messages.mo +0 -0
  28. properdocs_theme_mkdocs/locales/nn/LC_MESSAGES/messages.mo +0 -0
  29. properdocs_theme_mkdocs/locales/pl/LC_MESSAGES/messages.mo +0 -0
  30. properdocs_theme_mkdocs/locales/pt_BR/LC_MESSAGES/messages.mo +0 -0
  31. properdocs_theme_mkdocs/locales/ru/LC_MESSAGES/messages.mo +0 -0
  32. properdocs_theme_mkdocs/locales/tr/LC_MESSAGES/messages.mo +0 -0
  33. properdocs_theme_mkdocs/locales/uk/LC_MESSAGES/messages.mo +0 -0
  34. properdocs_theme_mkdocs/locales/zh_CN/LC_MESSAGES/messages.mo +0 -0
  35. properdocs_theme_mkdocs/locales/zh_TW/LC_MESSAGES/messages.mo +0 -0
  36. properdocs_theme_mkdocs/main.html +10 -0
  37. properdocs_theme_mkdocs/mkdocs_theme.yml +28 -0
  38. properdocs_theme_mkdocs/nav-sub.html +14 -0
  39. properdocs_theme_mkdocs/search-modal.html +21 -0
  40. properdocs_theme_mkdocs/toc.html +26 -0
  41. properdocs_theme_mkdocs/webfonts/fa-brands-400.ttf +0 -0
  42. properdocs_theme_mkdocs/webfonts/fa-brands-400.woff2 +0 -0
  43. properdocs_theme_mkdocs/webfonts/fa-regular-400.ttf +0 -0
  44. properdocs_theme_mkdocs/webfonts/fa-regular-400.woff2 +0 -0
  45. properdocs_theme_mkdocs/webfonts/fa-solid-900.ttf +0 -0
  46. properdocs_theme_mkdocs/webfonts/fa-solid-900.woff2 +0 -0
  47. properdocs_theme_mkdocs/webfonts/fa-v4compatibility.ttf +0 -0
  48. properdocs_theme_mkdocs/webfonts/fa-v4compatibility.woff2 +0 -0
  49. properdocs_theme_mkdocs-1.6.5.dist-info/METADATA +34 -0
  50. properdocs_theme_mkdocs-1.6.5.dist-info/RECORD +53 -0
  51. properdocs_theme_mkdocs-1.6.5.dist-info/WHEEL +4 -0
  52. properdocs_theme_mkdocs-1.6.5.dist-info/entry_points.txt +2 -0
  53. properdocs_theme_mkdocs-1.6.5.dist-info/licenses/LICENSE +26 -0
@@ -0,0 +1,65 @@
1
+ function setColorMode(mode) {
2
+ // Switch between light/dark theme. `mode` is a string value of either 'dark' or 'light'.
3
+ var hljs_light = document.getElementById('hljs-light'),
4
+ hljs_dark = document.getElementById('hljs-dark');
5
+ document.documentElement.setAttribute('data-bs-theme', mode);
6
+ if (mode == 'dark') {
7
+ hljs_light.disabled = true;
8
+ hljs_dark.disabled = false;
9
+ } else {
10
+ hljs_dark.disabled = true;
11
+ hljs_light.disabled = false;
12
+ }
13
+ }
14
+
15
+ function updateModeToggle(mode) {
16
+ // Update icon and toggle checkmarks of color mode selector.
17
+ var menu = document.getElementById('theme-menu');
18
+ document.querySelectorAll('[data-bs-theme-value]')
19
+ .forEach(function(toggle) {
20
+ if (mode == toggle.getAttribute('data-bs-theme-value')) {
21
+ toggle.setAttribute('aria-pressed', 'true');
22
+ toggle.lastElementChild.classList.remove('d-none');
23
+ menu.firstElementChild.setAttribute('class', toggle.firstElementChild.getAttribute('class'));
24
+ } else {
25
+ toggle.setAttribute('aria-pressed', 'false');
26
+ toggle.lastElementChild.classList.add('d-none');
27
+ }
28
+ });
29
+ }
30
+
31
+ function onSystemColorSchemeChange(event) {
32
+ // Update site color mode to match system color mode.
33
+ setColorMode(event.matches ? 'dark' : 'light');
34
+ }
35
+
36
+ var mql = window.matchMedia('(prefers-color-scheme: dark)'),
37
+ defaultMode = document.documentElement.getAttribute('data-bs-theme'),
38
+ storedMode = localStorage.getItem('mkdocs-colormode');
39
+ if (storedMode && storedMode != 'auto') {
40
+ setColorMode(storedMode);
41
+ updateModeToggle(storedMode);
42
+ } else if (storedMode == 'auto' || defaultMode == 'auto') {
43
+ setColorMode(mql.matches ? 'dark' : 'light');
44
+ updateModeToggle('auto');
45
+ mql.addEventListener('change', onSystemColorSchemeChange);
46
+ } else {
47
+ setColorMode(defaultMode);
48
+ updateModeToggle(defaultMode);
49
+ }
50
+
51
+ document.querySelectorAll('[data-bs-theme-value]')
52
+ .forEach(function(toggle) {
53
+ toggle.addEventListener('click', function (e) {
54
+ var mode = e.currentTarget.getAttribute('data-bs-theme-value');
55
+ localStorage.setItem('mkdocs-colormode', mode);
56
+ if (mode == 'auto') {
57
+ setColorMode(mql.matches ? 'dark' : 'light');
58
+ mql.addEventListener('change', onSystemColorSchemeChange);
59
+ } else {
60
+ setColorMode(mode);
61
+ mql.removeEventListener('change', onSystemColorSchemeChange);
62
+ }
63
+ updateModeToggle(mode);
64
+ });
65
+ });
@@ -0,0 +1,40 @@
1
+ <div class="modal" id="properdocs_keyboard_modal" tabindex="-1" role="dialog" aria-labelledby="keyboardModalLabel" aria-hidden="true">
2
+ <div class="modal-dialog">
3
+ <div class="modal-content">
4
+ <div class="modal-header">
5
+ <h4 class="modal-title" id="keyboardModalLabel">{% trans %}Keyboard Shortcuts{% endtrans %}</h4>
6
+ <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="{% trans %}Close{% endtrans %}"></button>
7
+ </div>
8
+ <div class="modal-body">
9
+ <table class="table">
10
+ <thead>
11
+ <tr>
12
+ <th style="width: 20%;">{% trans %}Keys{% endtrans %}</th>
13
+ <th>{% trans %}Action{% endtrans %}</th>
14
+ </tr>
15
+ </thead>
16
+ <tbody>
17
+ <tr>
18
+ <td class="help shortcut"><kbd>?</kbd></td>
19
+ <td>{% trans %}Open this help{% endtrans %}</td>
20
+ </tr>
21
+ <tr>
22
+ <td class="next shortcut"><kbd>n</kbd></td>
23
+ <td>{% trans %}Next page{% endtrans %}</td>
24
+ </tr>
25
+ <tr>
26
+ <td class="prev shortcut"><kbd>p</kbd></td>
27
+ <td>{% trans %}Previous page{% endtrans %}</td>
28
+ </tr>
29
+ <tr>
30
+ <td class="search shortcut"><kbd>s</kbd></td>
31
+ <td>{% trans %}Search{% endtrans %}</td>
32
+ </tr>
33
+ </tbody>
34
+ </table>
35
+ </div>
36
+ <div class="modal-footer">
37
+ </div>
38
+ </div>
39
+ </div>
40
+ </div>
@@ -0,0 +1,10 @@
1
+ {% extends "base.html" %}
2
+
3
+ {#
4
+ The entry point for the ProperDocs Theme.
5
+
6
+ Any theme customisations should override this file to redefine blocks defined in
7
+ the various templates. The custom theme should only need to define a main.html
8
+ which `{% extends "base.html" %}` and defines various blocks which will replace
9
+ the blocks defined in base.html and its included child templates.
10
+ #}
@@ -0,0 +1,28 @@
1
+ # Config options for 'mkdocs' theme
2
+
3
+ static_templates:
4
+ - 404.html
5
+
6
+ locale: en
7
+
8
+ include_search_page: false
9
+ search_index_only: false
10
+
11
+ highlightjs: true
12
+ hljs_languages: []
13
+ hljs_style: github
14
+ hljs_style_dark: github-dark
15
+
16
+ navigation_depth: 2
17
+ nav_style: primary
18
+ color_mode: light
19
+ user_color_mode_toggle: false
20
+
21
+ analytics:
22
+ gtag: null
23
+
24
+ shortcuts:
25
+ help: 191 # ?
26
+ next: 78 # n
27
+ previous: 80 # p
28
+ search: 83 # s
@@ -0,0 +1,14 @@
1
+ {%- if not nav_item.children %}
2
+ <li>
3
+ <a href="{{ nav_item.url|url }}" class="dropdown-item{% if nav_item.active %} active" aria-current="page{% endif %}">{{ nav_item.title }}</a>
4
+ </li>
5
+ {%- else %}
6
+ <li class="dropdown-submenu">
7
+ <a href="#" class="dropdown-item">{{ nav_item.title }}</a>
8
+ <ul class="dropdown-menu">
9
+ {%- for nav_item in nav_item.children %}
10
+ {% include "nav-sub.html" %}
11
+ {%- endfor %}
12
+ </ul>
13
+ </li>
14
+ {%- endif %}
@@ -0,0 +1,21 @@
1
+ <div class="modal" id="properdocs_search_modal" tabindex="-1" role="dialog" aria-labelledby="searchModalLabel" aria-hidden="true">
2
+ <div class="modal-dialog modal-lg">
3
+ <div class="modal-content">
4
+ <div class="modal-header">
5
+ <h4 class="modal-title" id="searchModalLabel">{% trans %}Search{% endtrans %}</h4>
6
+ <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="{% trans %}Close{% endtrans %}"></button>
7
+ </div>
8
+ <div class="modal-body">
9
+ <p>{% trans %}From here you can search these documents. Enter your search terms below.{% endtrans %}</p>
10
+ <form>
11
+ <div class="form-group">
12
+ <input type="search" class="form-control" placeholder="{% trans %}Search...{% endtrans %}" id="properdocs-search-query" title="{% trans %}Type search term here{% endtrans %}">
13
+ </div>
14
+ </form>
15
+ <div id="properdocs-search-results" data-no-results-text="{% trans %}No results found{% endtrans %}"></div>
16
+ </div>
17
+ <div class="modal-footer">
18
+ </div>
19
+ </div>
20
+ </div>
21
+ </div>
@@ -0,0 +1,26 @@
1
+ <div class="navbar-expand-md bs-sidebar hidden-print affix" role="complementary">
2
+ <div class="navbar-header">
3
+ <button type="button" class="navbar-toggler collapsed" data-bs-toggle="collapse" data-bs-target="#toc-collapse" title="{% trans %}Table of Contents{% endtrans %}">
4
+ <span class="fa fa-angle-down"></span>
5
+ </button>
6
+ </div>
7
+
8
+ {% macro toc_item(item) %}
9
+ {%- if item.level <= config.theme.navigation_depth %}
10
+ <li class="nav-item" data-bs-level="{{ item.level }}"><a href="{{ item.url }}" class="nav-link">{{ item.title }}</a>
11
+ <ul class="nav flex-column">
12
+ {%- for child in item.children %}
13
+ {{- toc_item(child) }}
14
+ {%- endfor %}
15
+ </ul>
16
+ </li>
17
+ {%- endif %}
18
+ {%- endmacro %}
19
+ <div id="toc-collapse" class="navbar-collapse collapse card bg-body-tertiary">
20
+ <ul class="nav flex-column">
21
+ {%- for item in page.toc %}
22
+ {{ toc_item(item) }}
23
+ {%- endfor %}
24
+ </ul>
25
+ </div>
26
+ </div>
@@ -0,0 +1,34 @@
1
+ Metadata-Version: 2.4
2
+ Name: properdocs-theme-mkdocs
3
+ Version: 1.6.5
4
+ Summary: 'mkdocs' theme for ProperDocs, originally made for MkDocs
5
+ Project-URL: Documentation, https://properdocs.org/
6
+ Project-URL: Source, https://github.com/properdocs/properdocs
7
+ Project-URL: Issues, https://github.com/properdocs/properdocs/issues
8
+ Author-email: Tom Christie <tom@tomchristie.com>
9
+ License-Expression: BSD-2-Clause
10
+ License-File: LICENSE
11
+ Classifier: Development Status :: 5 - Production/Stable
12
+ Classifier: Environment :: Console
13
+ Classifier: Environment :: Web Environment
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: License :: OSI Approved :: BSD License
16
+ Classifier: Operating System :: OS Independent
17
+ Classifier: Programming Language :: Python
18
+ Classifier: Programming Language :: Python :: 3
19
+ Classifier: Topic :: Documentation
20
+ Classifier: Topic :: Text Processing
21
+ Requires-Python: >=3.9
22
+ Requires-Dist: babel
23
+ Requires-Dist: properdocs
24
+ Description-Content-Type: text/markdown
25
+
26
+ # properdocs-theme-mkdocs
27
+
28
+ This package needs to be installed in order to use the "MkDocs" theme with the [ProperDocs](https://properdocs.org/) documentation generator:
29
+
30
+ pip install properdocs-theme-mkdocs
31
+
32
+ (See <https://properdocs.org/dev-guide/themes/>)
33
+
34
+ It originates as the "MkDocs" theme made for the [MkDocs](https://www.mkdocs.org/) documentation generator.
@@ -0,0 +1,53 @@
1
+ properdocs_theme_mkdocs/404.html,sha256=D6zQ5J04vvm4V58PBOCdCvyCuLcEZ9w7svhEDmRYfTE,332
2
+ properdocs_theme_mkdocs/__init__.py,sha256=3qXyhppw2sa-bg221tzcovcj30gUPxz-RShKQALSueg,22
3
+ properdocs_theme_mkdocs/base.html,sha256=QT1bN6WsMPFJfbA-YZHzPZU_OjeBC1W5-TqkxkxT5LY,14334
4
+ properdocs_theme_mkdocs/content.html,sha256=5y0Am5t8KXfR7lG9eBowCLc-xgXTl6VIpVFLH1VgK_I,204
5
+ properdocs_theme_mkdocs/keyboard-modal.html,sha256=bmHTupRsFfxjmEEryZPJnFXYhRBXWjIeh_waxz5wIs8,1706
6
+ properdocs_theme_mkdocs/main.html,sha256=_wM7kkYf4OFx1nwV_tvTFcJpmZGGFWNllDRyc_4WpQU,382
7
+ properdocs_theme_mkdocs/mkdocs_theme.yml,sha256=56RGtPUc7tiN0yRN5Hn13pwFDkHVu6Qd9MOR7g3ratk,420
8
+ properdocs_theme_mkdocs/nav-sub.html,sha256=8beFqbbCOh4xvMxn340ipPvZ_sRkR7X87vLQzi08Uzc,470
9
+ properdocs_theme_mkdocs/search-modal.html,sha256=A4hK5Yg55hE8OAJHeLjc7RfsrBk_8uyOU0TucaVHlu0,1209
10
+ properdocs_theme_mkdocs/toc.html,sha256=qEFKqBanXlDOGapxqtYKgcVKRGtDJ6nh6jvL-wfiY_4,1077
11
+ properdocs_theme_mkdocs/css/base.css,sha256=j93MkfJ6rulxHauZ3EeO5CRU_ptRJdOTIZMhhhW9rLI,8479
12
+ properdocs_theme_mkdocs/css/bootstrap.min.css,sha256=UWALBbCbbM649IZa_rYTILDmnfc-fXuZQQ2awYBChIs,235601
13
+ properdocs_theme_mkdocs/css/bootstrap.min.css.map,sha256=WLl-J5pJPTsGq5c8azX59LgBjI2KywJCmQcC8HymZwg,88399
14
+ properdocs_theme_mkdocs/css/brands.min.css,sha256=Mh5evqB307O-A_WwIYzqsiWc9ukwNaqGROeXCgVP1oc,19307
15
+ properdocs_theme_mkdocs/css/fontawesome.min.css,sha256=jrW0TOWXGlAeWheVTEZLgKugxGBGdbVgOn9FZFmviKE,80795
16
+ properdocs_theme_mkdocs/css/solid.min.css,sha256=uK-kJD3Rv3NfUScI2lM1sO0xTZ5YoKHPG3gSUM9fsAQ,572
17
+ properdocs_theme_mkdocs/css/v4-font-face.min.css,sha256=hpjrsqMEMwZfMeOSzw5Wp_vpd5jaZzFjYGJCx8qFruY,1736
18
+ properdocs_theme_mkdocs/img/favicon.ico,sha256=8WtFvVP7rKos2PIuhILbXFngzvm9ITlEdKQpoYqY_9A,1150
19
+ properdocs_theme_mkdocs/img/grid.png,sha256=bipYUDSUpwgQWsZG069cCMjIkDJbt4GiV9EPkf-Wipw,1458
20
+ properdocs_theme_mkdocs/js/base.js,sha256=SKhK8FaIQdLaqyV4TOuPdwAa0fj823xa8FMBq2OXWNo,8266
21
+ properdocs_theme_mkdocs/js/bootstrap.bundle.min.js,sha256=gvZPYrsDwbwYJLD5yeBfcNujPhRoGOY831wwbIzz3t0,80663
22
+ properdocs_theme_mkdocs/js/bootstrap.bundle.min.js.map,sha256=GaWwuI0k1rFUxEYolsljHAsxfXHyLuu_C55AXbQ1H9E,331886
23
+ properdocs_theme_mkdocs/js/darkmode.js,sha256=ZmDKkKCzS-aO3QUDEC0BPm1OotTtj_3KHvF-K2kibZA,2618
24
+ properdocs_theme_mkdocs/locales/de/LC_MESSAGES/messages.mo,sha256=E4p4m-NvV8opXn_zHzXIpJI6nlFzH6O-vo8b9oWX0ag,1535
25
+ properdocs_theme_mkdocs/locales/es/LC_MESSAGES/messages.mo,sha256=Kp5i3WjtkbVDlAa7Xj3lDFFTWSAuSd8QpKVG2gAgP_g,1531
26
+ properdocs_theme_mkdocs/locales/fa/LC_MESSAGES/messages.mo,sha256=sS9up0L1pEPpOdxPf7FT2WZKasDCAx_W0rFoWHMZxOY,1635
27
+ properdocs_theme_mkdocs/locales/fr/LC_MESSAGES/messages.mo,sha256=JO6TtLwVlFuLYf1DTFIFayk1jUvoFLTzpgkAbAKWMeo,1452
28
+ properdocs_theme_mkdocs/locales/id/LC_MESSAGES/messages.mo,sha256=TbYBu0SBZv6n1q4SxWo1qEQ2lCACDLHHytyg4n2jHt0,1516
29
+ properdocs_theme_mkdocs/locales/it/LC_MESSAGES/messages.mo,sha256=HHpzTialITi_0piYIus-aPYnTouLKsoOhZcDvrORFc8,1512
30
+ properdocs_theme_mkdocs/locales/ja/LC_MESSAGES/messages.mo,sha256=T5MZld5grmNw0gDRbZzYDOiFcZrrE7AZm9HfbV3FEJE,1564
31
+ properdocs_theme_mkdocs/locales/nb/LC_MESSAGES/messages.mo,sha256=mNBX094pOW_qJz0NNn6w63lRm6XHzBJ5YCv9Dfrmlgs,1468
32
+ properdocs_theme_mkdocs/locales/nl/LC_MESSAGES/messages.mo,sha256=vc4tz26zqH1peNrXhvmQ-_n1iQMXHdPii0iIqgHddfo,1475
33
+ properdocs_theme_mkdocs/locales/nn/LC_MESSAGES/messages.mo,sha256=FeOfJukzINN_kABVS0nixmbfi-BR_XO4wIHQJG_fI1k,1449
34
+ properdocs_theme_mkdocs/locales/pl/LC_MESSAGES/messages.mo,sha256=6NEJ1yf9P6AOLO14ZJjy5lk0-O2xqT2m50l4VD5D3jI,1588
35
+ properdocs_theme_mkdocs/locales/pt_BR/LC_MESSAGES/messages.mo,sha256=HwhZFNrOb5JIxjrZ2RUNCdOcIcFSSMnyaej8XK2yL-Q,1519
36
+ properdocs_theme_mkdocs/locales/ru/LC_MESSAGES/messages.mo,sha256=yGxJBbEJdEONWC4ZRtT9tyAW8wEJ2AW6bj5MOCLZ2oY,1858
37
+ properdocs_theme_mkdocs/locales/tr/LC_MESSAGES/messages.mo,sha256=NV5XAGtG_51N8mR1Og-NnLFeF2-1E7Z1-7B2POh15hY,1471
38
+ properdocs_theme_mkdocs/locales/uk/LC_MESSAGES/messages.mo,sha256=RsamCCe2tq-EemZjbIIZ-9CorWyBlsOYVopuARFsayQ,1783
39
+ properdocs_theme_mkdocs/locales/zh_CN/LC_MESSAGES/messages.mo,sha256=ujNr1Mcp5VaWENF16tbehAjBX3Ur-p2q3wihvtOqrDk,1471
40
+ properdocs_theme_mkdocs/locales/zh_TW/LC_MESSAGES/messages.mo,sha256=VR3UyVTl9-OKenG_2pRd81SHZp-MskmFjvF6WwsVOAE,1491
41
+ properdocs_theme_mkdocs/webfonts/fa-brands-400.ttf,sha256=VlbVlrxZcWWkIYL2eyufF9KuR6nj7xsEK5pylzlzBwU,207972
42
+ properdocs_theme_mkdocs/webfonts/fa-brands-400.woff2,sha256=OokkzVIDooYocWrttc7wlD2kw7ROP_zukKsGOHtBxJA,117372
43
+ properdocs_theme_mkdocs/webfonts/fa-regular-400.ttf,sha256=XQLcm4WOPIWnlPh-N5hX9P7cTibPFQAXFKmg4LHSKU0,68004
44
+ properdocs_theme_mkdocs/webfonts/fa-regular-400.woff2,sha256=K8zs8Lx-ls1c5AA6vrOunuSj0ZFYxObt_S3zLS8NVyE,25452
45
+ properdocs_theme_mkdocs/webfonts/fa-solid-900.ttf,sha256=-78G10N6ow881EyWg4AZNUWo_D6t-3rYl7uxAe7-xaI,419720
46
+ properdocs_theme_mkdocs/webfonts/fa-solid-900.woff2,sha256=n8hfOkVEqw1XDH-Pm7uI242Sw1mycHWA6osHx1Zz6uI,156496
47
+ properdocs_theme_mkdocs/webfonts/fa-v4compatibility.ttf,sha256=CWY6NvwF5xkK-DJLhVEFxbtRGtlPlLgbNK_uUDJ57KI,10832
48
+ properdocs_theme_mkdocs/webfonts/fa-v4compatibility.woff2,sha256=TUotf9HGaEhFyxdP3X_Ac71ky3QShvskf4t2wre4UsQ,4792
49
+ properdocs_theme_mkdocs-1.6.5.dist-info/METADATA,sha256=AVI38LVLiZ2j3e97bKn1lgp7x4AnqBLgz9vcHjRoa9E,1340
50
+ properdocs_theme_mkdocs-1.6.5.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
51
+ properdocs_theme_mkdocs-1.6.5.dist-info/entry_points.txt,sha256=DxF-8BrDUpXJiZCs3yMrK1sxWqCqiTqdQnaRbGd5tj4,53
52
+ properdocs_theme_mkdocs-1.6.5.dist-info/licenses/LICENSE,sha256=JgQb1iX8OUEdxLMnSCFiNpMckErbkMKz4LppcJCl1U4,1292
53
+ properdocs_theme_mkdocs-1.6.5.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.29.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [properdocs.themes]
2
+ mkdocs = properdocs_theme_mkdocs
@@ -0,0 +1,26 @@
1
+ Copyright © 2014-present, Tom Christie. All rights reserved.
2
+
3
+ Redistribution and use in source and binary forms, with or
4
+ without modification, are permitted provided that the following
5
+ conditions are met:
6
+
7
+ Redistributions of source code must retain the above copyright
8
+ notice, this list of conditions and the following disclaimer.
9
+ Redistributions in binary form must reproduce the above copyright
10
+ notice, this list of conditions and the following disclaimer in
11
+ the documentation and/or other materials provided with the
12
+ distribution.
13
+
14
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
15
+ CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
16
+ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
17
+ MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
19
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
21
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
22
+ USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23
+ AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
25
+ ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26
+ POSSIBILITY OF SUCH DAMAGE.