diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..87f2cbd --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,16 @@ +image: alpine:latest + +before_script: + - apk update + - apk add python3 + +pages: + stage: deploy + script: + - cd Source + - python3 Build.py + artifacts: + paths: + - public + rules: + - if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH diff --git a/Assets/Standard.css b/Source/Assets/Standard.css similarity index 100% rename from Assets/Standard.css rename to Source/Assets/Standard.css diff --git a/Build.py b/Source/Build.py similarity index 100% rename from Build.py rename to Source/Build.py diff --git a/Libs/markdown/__init__.py b/Source/Libs/markdown/__init__.py similarity index 100% rename from Libs/markdown/__init__.py rename to Source/Libs/markdown/__init__.py diff --git a/Libs/markdown/__main__.py b/Source/Libs/markdown/__main__.py similarity index 100% rename from Libs/markdown/__main__.py rename to Source/Libs/markdown/__main__.py diff --git a/Libs/markdown/__meta__.py b/Source/Libs/markdown/__meta__.py similarity index 100% rename from Libs/markdown/__meta__.py rename to Source/Libs/markdown/__meta__.py diff --git a/Libs/markdown/__pycache__/__init__.cpython-310.pyc b/Source/Libs/markdown/__pycache__/__init__.cpython-310.pyc similarity index 100% rename from Libs/markdown/__pycache__/__init__.cpython-310.pyc rename to Source/Libs/markdown/__pycache__/__init__.cpython-310.pyc diff --git a/Libs/markdown/__pycache__/__meta__.cpython-310.pyc b/Source/Libs/markdown/__pycache__/__meta__.cpython-310.pyc similarity index 100% rename from Libs/markdown/__pycache__/__meta__.cpython-310.pyc rename to Source/Libs/markdown/__pycache__/__meta__.cpython-310.pyc diff --git a/Libs/markdown/__pycache__/blockparser.cpython-310.pyc b/Source/Libs/markdown/__pycache__/blockparser.cpython-310.pyc similarity index 100% rename from Libs/markdown/__pycache__/blockparser.cpython-310.pyc rename to Source/Libs/markdown/__pycache__/blockparser.cpython-310.pyc diff --git a/Libs/markdown/__pycache__/blockprocessors.cpython-310.pyc b/Source/Libs/markdown/__pycache__/blockprocessors.cpython-310.pyc similarity index 100% rename from Libs/markdown/__pycache__/blockprocessors.cpython-310.pyc rename to Source/Libs/markdown/__pycache__/blockprocessors.cpython-310.pyc diff --git a/Libs/markdown/__pycache__/core.cpython-310.pyc b/Source/Libs/markdown/__pycache__/core.cpython-310.pyc similarity index 100% rename from Libs/markdown/__pycache__/core.cpython-310.pyc rename to Source/Libs/markdown/__pycache__/core.cpython-310.pyc diff --git a/Libs/markdown/__pycache__/htmlparser.cpython-310.pyc b/Source/Libs/markdown/__pycache__/htmlparser.cpython-310.pyc similarity index 100% rename from Libs/markdown/__pycache__/htmlparser.cpython-310.pyc rename to Source/Libs/markdown/__pycache__/htmlparser.cpython-310.pyc diff --git a/Libs/markdown/__pycache__/inlinepatterns.cpython-310.pyc b/Source/Libs/markdown/__pycache__/inlinepatterns.cpython-310.pyc similarity index 100% rename from Libs/markdown/__pycache__/inlinepatterns.cpython-310.pyc rename to Source/Libs/markdown/__pycache__/inlinepatterns.cpython-310.pyc diff --git a/Libs/markdown/__pycache__/pep562.cpython-310.pyc b/Source/Libs/markdown/__pycache__/pep562.cpython-310.pyc similarity index 100% rename from Libs/markdown/__pycache__/pep562.cpython-310.pyc rename to Source/Libs/markdown/__pycache__/pep562.cpython-310.pyc diff --git a/Libs/markdown/__pycache__/postprocessors.cpython-310.pyc b/Source/Libs/markdown/__pycache__/postprocessors.cpython-310.pyc similarity index 100% rename from Libs/markdown/__pycache__/postprocessors.cpython-310.pyc rename to Source/Libs/markdown/__pycache__/postprocessors.cpython-310.pyc diff --git a/Libs/markdown/__pycache__/preprocessors.cpython-310.pyc b/Source/Libs/markdown/__pycache__/preprocessors.cpython-310.pyc similarity index 100% rename from Libs/markdown/__pycache__/preprocessors.cpython-310.pyc rename to Source/Libs/markdown/__pycache__/preprocessors.cpython-310.pyc diff --git a/Libs/markdown/__pycache__/serializers.cpython-310.pyc b/Source/Libs/markdown/__pycache__/serializers.cpython-310.pyc similarity index 100% rename from Libs/markdown/__pycache__/serializers.cpython-310.pyc rename to Source/Libs/markdown/__pycache__/serializers.cpython-310.pyc diff --git a/Libs/markdown/__pycache__/treeprocessors.cpython-310.pyc b/Source/Libs/markdown/__pycache__/treeprocessors.cpython-310.pyc similarity index 100% rename from Libs/markdown/__pycache__/treeprocessors.cpython-310.pyc rename to Source/Libs/markdown/__pycache__/treeprocessors.cpython-310.pyc diff --git a/Libs/markdown/__pycache__/util.cpython-310.pyc b/Source/Libs/markdown/__pycache__/util.cpython-310.pyc similarity index 100% rename from Libs/markdown/__pycache__/util.cpython-310.pyc rename to Source/Libs/markdown/__pycache__/util.cpython-310.pyc diff --git a/Libs/markdown/blockparser.py b/Source/Libs/markdown/blockparser.py similarity index 100% rename from Libs/markdown/blockparser.py rename to Source/Libs/markdown/blockparser.py diff --git a/Libs/markdown/blockprocessors.py b/Source/Libs/markdown/blockprocessors.py similarity index 100% rename from Libs/markdown/blockprocessors.py rename to Source/Libs/markdown/blockprocessors.py diff --git a/Libs/markdown/core.py b/Source/Libs/markdown/core.py similarity index 100% rename from Libs/markdown/core.py rename to Source/Libs/markdown/core.py diff --git a/Libs/markdown/extensions/__init__.py b/Source/Libs/markdown/extensions/__init__.py similarity index 100% rename from Libs/markdown/extensions/__init__.py rename to Source/Libs/markdown/extensions/__init__.py diff --git a/Libs/markdown/extensions/__pycache__/__init__.cpython-310.pyc b/Source/Libs/markdown/extensions/__pycache__/__init__.cpython-310.pyc similarity index 100% rename from Libs/markdown/extensions/__pycache__/__init__.cpython-310.pyc rename to Source/Libs/markdown/extensions/__pycache__/__init__.cpython-310.pyc diff --git a/Libs/markdown/extensions/abbr.py b/Source/Libs/markdown/extensions/abbr.py similarity index 100% rename from Libs/markdown/extensions/abbr.py rename to Source/Libs/markdown/extensions/abbr.py diff --git a/Libs/markdown/extensions/admonition.py b/Source/Libs/markdown/extensions/admonition.py similarity index 100% rename from Libs/markdown/extensions/admonition.py rename to Source/Libs/markdown/extensions/admonition.py diff --git a/Libs/markdown/extensions/attr_list.py b/Source/Libs/markdown/extensions/attr_list.py similarity index 100% rename from Libs/markdown/extensions/attr_list.py rename to Source/Libs/markdown/extensions/attr_list.py diff --git a/Libs/markdown/extensions/codehilite.py b/Source/Libs/markdown/extensions/codehilite.py similarity index 100% rename from Libs/markdown/extensions/codehilite.py rename to Source/Libs/markdown/extensions/codehilite.py diff --git a/Libs/markdown/extensions/def_list.py b/Source/Libs/markdown/extensions/def_list.py similarity index 100% rename from Libs/markdown/extensions/def_list.py rename to Source/Libs/markdown/extensions/def_list.py diff --git a/Libs/markdown/extensions/extra.py b/Source/Libs/markdown/extensions/extra.py similarity index 100% rename from Libs/markdown/extensions/extra.py rename to Source/Libs/markdown/extensions/extra.py diff --git a/Libs/markdown/extensions/fenced_code.py b/Source/Libs/markdown/extensions/fenced_code.py similarity index 100% rename from Libs/markdown/extensions/fenced_code.py rename to Source/Libs/markdown/extensions/fenced_code.py diff --git a/Libs/markdown/extensions/footnotes.py b/Source/Libs/markdown/extensions/footnotes.py similarity index 100% rename from Libs/markdown/extensions/footnotes.py rename to Source/Libs/markdown/extensions/footnotes.py diff --git a/Libs/markdown/extensions/legacy_attrs.py b/Source/Libs/markdown/extensions/legacy_attrs.py similarity index 100% rename from Libs/markdown/extensions/legacy_attrs.py rename to Source/Libs/markdown/extensions/legacy_attrs.py diff --git a/Libs/markdown/extensions/legacy_em.py b/Source/Libs/markdown/extensions/legacy_em.py similarity index 100% rename from Libs/markdown/extensions/legacy_em.py rename to Source/Libs/markdown/extensions/legacy_em.py diff --git a/Libs/markdown/extensions/md_in_html.py b/Source/Libs/markdown/extensions/md_in_html.py similarity index 100% rename from Libs/markdown/extensions/md_in_html.py rename to Source/Libs/markdown/extensions/md_in_html.py diff --git a/Libs/markdown/extensions/meta.py b/Source/Libs/markdown/extensions/meta.py similarity index 100% rename from Libs/markdown/extensions/meta.py rename to Source/Libs/markdown/extensions/meta.py diff --git a/Libs/markdown/extensions/nl2br.py b/Source/Libs/markdown/extensions/nl2br.py similarity index 100% rename from Libs/markdown/extensions/nl2br.py rename to Source/Libs/markdown/extensions/nl2br.py diff --git a/Libs/markdown/extensions/sane_lists.py b/Source/Libs/markdown/extensions/sane_lists.py similarity index 100% rename from Libs/markdown/extensions/sane_lists.py rename to Source/Libs/markdown/extensions/sane_lists.py diff --git a/Libs/markdown/extensions/smarty.py b/Source/Libs/markdown/extensions/smarty.py similarity index 100% rename from Libs/markdown/extensions/smarty.py rename to Source/Libs/markdown/extensions/smarty.py diff --git a/Libs/markdown/extensions/tables.py b/Source/Libs/markdown/extensions/tables.py similarity index 100% rename from Libs/markdown/extensions/tables.py rename to Source/Libs/markdown/extensions/tables.py diff --git a/Libs/markdown/extensions/toc.py b/Source/Libs/markdown/extensions/toc.py similarity index 100% rename from Libs/markdown/extensions/toc.py rename to Source/Libs/markdown/extensions/toc.py diff --git a/Libs/markdown/extensions/wikilinks.py b/Source/Libs/markdown/extensions/wikilinks.py similarity index 100% rename from Libs/markdown/extensions/wikilinks.py rename to Source/Libs/markdown/extensions/wikilinks.py diff --git a/Libs/markdown/htmlparser.py b/Source/Libs/markdown/htmlparser.py similarity index 100% rename from Libs/markdown/htmlparser.py rename to Source/Libs/markdown/htmlparser.py diff --git a/Libs/markdown/inlinepatterns.py b/Source/Libs/markdown/inlinepatterns.py similarity index 100% rename from Libs/markdown/inlinepatterns.py rename to Source/Libs/markdown/inlinepatterns.py diff --git a/Libs/markdown/pep562.py b/Source/Libs/markdown/pep562.py similarity index 100% rename from Libs/markdown/pep562.py rename to Source/Libs/markdown/pep562.py diff --git a/Libs/markdown/postprocessors.py b/Source/Libs/markdown/postprocessors.py similarity index 100% rename from Libs/markdown/postprocessors.py rename to Source/Libs/markdown/postprocessors.py diff --git a/Libs/markdown/preprocessors.py b/Source/Libs/markdown/preprocessors.py similarity index 100% rename from Libs/markdown/preprocessors.py rename to Source/Libs/markdown/preprocessors.py diff --git a/Libs/markdown/serializers.py b/Source/Libs/markdown/serializers.py similarity index 100% rename from Libs/markdown/serializers.py rename to Source/Libs/markdown/serializers.py diff --git a/Libs/markdown/test_tools.py b/Source/Libs/markdown/test_tools.py similarity index 100% rename from Libs/markdown/test_tools.py rename to Source/Libs/markdown/test_tools.py diff --git a/Libs/markdown/treeprocessors.py b/Source/Libs/markdown/treeprocessors.py similarity index 100% rename from Libs/markdown/treeprocessors.py rename to Source/Libs/markdown/treeprocessors.py diff --git a/Libs/markdown/util.py b/Source/Libs/markdown/util.py similarity index 100% rename from Libs/markdown/util.py rename to Source/Libs/markdown/util.py diff --git a/Pages/index.md b/Source/Pages/index.md similarity index 100% rename from Pages/index.md rename to Source/Pages/index.md diff --git a/Parts/Standard/BottomBox.html b/Source/Parts/Standard/BottomBox.html similarity index 100% rename from Parts/Standard/BottomBox.html rename to Source/Parts/Standard/BottomBox.html diff --git a/Parts/Standard/LeftBox.html b/Source/Parts/Standard/LeftBox.html similarity index 100% rename from Parts/Standard/LeftBox.html rename to Source/Parts/Standard/LeftBox.html diff --git a/Parts/Standard/TopBox.html b/Source/Parts/Standard/TopBox.html similarity index 100% rename from Parts/Standard/TopBox.html rename to Source/Parts/Standard/TopBox.html diff --git a/Templates/Standard.html b/Source/Templates/Standard.html similarity index 100% rename from Templates/Standard.html rename to Source/Templates/Standard.html