gitextract_yof8yoxc/ ├── .dockerignore ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── 1_bug_report.yaml │ │ ├── 2_feature_request.yaml │ │ ├── 3_question.yaml │ │ └── config.yml │ ├── PULL_REQUEST_TEMPLATE.md │ ├── dependabot.yml │ └── workflows/ │ ├── docker-build.yml │ ├── docker-publish.yml │ ├── docs.yml │ ├── python-build.yml │ ├── python-publish.yml │ └── release.yml ├── .gitignore ├── .python-version ├── .vscode/ │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── confluence_markdown_exporter/ │ ├── __init__.py │ ├── api_clients.py │ ├── config.py │ ├── confluence.py │ ├── main.py │ └── utils/ │ ├── __init__.py │ ├── app_data_store.py │ ├── config_interactive.py │ ├── drawio_converter.py │ ├── export.py │ ├── lockfile.py │ ├── measure_time.py │ ├── page_registry.py │ ├── rich_console.py │ ├── table_converter.py │ └── type_converter.py ├── docs/ │ ├── compatibility.md │ ├── configuration/ │ │ ├── authentication.md │ │ ├── ci.md │ │ ├── index.md │ │ ├── options.md │ │ └── target-systems.md │ ├── contributing.md │ ├── docker.md │ ├── features.md │ ├── installation.md │ ├── intro.md │ ├── troubleshooting.md │ └── usage.md ├── docusaurus.config.ts ├── package.json ├── pyproject.toml ├── scripts/ │ ├── build-versions.mjs │ └── bump-docs-version.sh ├── sidebars.ts ├── src/ │ ├── components/ │ │ ├── HomepageFeatures/ │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ └── quickstart/ │ │ └── index.tsx │ ├── css/ │ │ └── custom.css │ └── pages/ │ ├── index.module.css │ └── index.tsx ├── tests/ │ ├── __init__.py │ ├── conftest.py │ ├── integration/ │ │ ├── __init__.py │ │ └── test_cli_integration.py │ └── unit/ │ ├── __init__.py │ ├── test_alert_conversion.py │ ├── test_api_clients.py │ ├── test_confluence.py │ ├── test_emoticon_conversion.py │ ├── test_include_macro_conversion.py │ ├── test_main.py │ ├── test_nbsp_fix.py │ ├── test_plantuml_code_block_detection.py │ ├── test_plantuml_conversion.py │ ├── test_template_placeholders.py │ └── utils/ │ ├── __init__.py │ ├── test_app_data_store_env.py │ ├── test_drawio_converter.py │ ├── test_export.py │ ├── test_lockfile.py │ ├── test_measure_time.py │ ├── test_page_registry.py │ ├── test_rich_console.py │ ├── test_table_converter.py │ └── test_type_converter.py └── tsconfig.json