mirror of
https://github.com/data-privacy-stack/presidio.git
synced 2026-07-23 11:20:55 -05:00
* docs: migrate documentation site from MkDocs to Zensical Replace the Material for MkDocs toolchain with Zensical (its successor), leaving no parallel MkDocs build behind. - release-docs.yml builds with scripts/zensical_build.py and publishes the generated ./site to GitHub Pages (was: pip install requirements-docs.txt + mkdocs gh-deploy). - requirements-docs.txt pins zensical + nbconvert + mkdocstrings-python in place of mkdocs / mkdocs-material / mkdocs-jupyter. - scripts/zensical_build.py pre-converts the notebook samples with nbconvert (Zensical has no MkDocs plugin lifecycle, so mkdocs-jupyter never runs) and emits a generated zensical.yml from mkdocs.yml, which Zensical reads natively. - mkdocs.yml: drop the now-unused mkdocs-jupyter plugin (the build script handles notebooks); the Material-compatible theme, custom_dir overrides (Microsoft Clarity + cookie consent) and mkdocstrings API reference are all honored by Zensical. - docs/stylesheets/extra.css: style the nbconvert-rendered notebook output. - NOTICE: attribute Zensical (MIT) and nbconvert (BSD-3 Clause); drop the MkDocs and mkdocs-jupyter notices, keep mkdocstrings and pymdown-extensions. Verified locally: 104 pages build, all 18 sample notebooks render, the API reference and brand styling are intact. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * docs: improve Zensical mobile homepage Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Co-authored-by: Omri Mendels <omri374@users.noreply.github.com> Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
146 lines
1.8 KiB
Plaintext
146 lines
1.8 KiB
Plaintext
# Byte-compiled / optimized / DLL files
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# C extensions
|
|
*.so
|
|
|
|
# Distribution / packaging
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# PyInstaller
|
|
# Usually these files are written by a python script from a template
|
|
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
*.manifest
|
|
*.spec
|
|
|
|
# Installer logs
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
|
|
# Unit test / coverage reports
|
|
htmlcov/
|
|
.tox/
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
.hypothesis/
|
|
.pytest_cache/
|
|
|
|
# Translations
|
|
*.mo
|
|
*.pot
|
|
|
|
# Django stuff:
|
|
*.log
|
|
local_settings.py
|
|
db.sqlite3
|
|
|
|
# Flask stuff:
|
|
instance/
|
|
.webassets-cache
|
|
|
|
# Scrapy stuff:
|
|
.scrapy
|
|
|
|
# Sphinx documentation
|
|
docs/_build/
|
|
|
|
# PyBuilder
|
|
target/
|
|
|
|
# Jupyter Notebook
|
|
.ipynb_checkpoints
|
|
|
|
# pyenv
|
|
.python-version
|
|
|
|
# celery beat schedule file
|
|
celerybeat-schedule
|
|
|
|
# SageMath parsed files
|
|
*.sage.py
|
|
|
|
# Environments
|
|
.env
|
|
.venv
|
|
env/
|
|
venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
*venv/
|
|
poetry.lock
|
|
|
|
# Spyder project settings
|
|
.spyderproject
|
|
.spyproject
|
|
|
|
# Rope project settings
|
|
.ropeproject
|
|
|
|
# Zensical docs build (scripts/zensical_build.py)
|
|
/site
|
|
/zensical.yml
|
|
.zensical-build/
|
|
|
|
# mypy
|
|
.mypy_cache/
|
|
|
|
# Binaries for programs and plugins
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Test binary, build with `go test -c`
|
|
*.test
|
|
|
|
# Output of the go coverage tool, specifically when used with LiteIDE
|
|
*.out
|
|
|
|
.vscode
|
|
|
|
debug.test
|
|
debug
|
|
|
|
/bin/
|
|
*/rootfs/*
|
|
/tests/testdata/*-generated.*
|
|
.DS_Store
|
|
vendor/
|
|
*.db
|
|
|
|
#pycharm
|
|
.idea/*
|
|
.idea
|
|
|
|
#mkdocs
|
|
mkdocs/
|
|
/presidio_mkdocs
|
|
|
|
# Visual Studio
|
|
/.vs
|
|
/TestResults
|