├── .gitignore ├── LICENSE ├── README.md ├── poetry.lock ├── pptx_tool ├── __init__.py ├── __main__.py ├── fix.py ├── package.py └── types.py ├── pyproject.toml └── themes ├── freesentation.json ├── inter-pretendard.json ├── nanum-barun.json ├── nanum-square-round.json ├── nanum-square.json ├── office.json └── pretendard.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achimnol/pptx-tool/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achimnol/pptx-tool/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achimnol/pptx-tool/HEAD/README.md -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achimnol/pptx-tool/HEAD/poetry.lock -------------------------------------------------------------------------------- /pptx_tool/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pptx_tool/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achimnol/pptx-tool/HEAD/pptx_tool/__main__.py -------------------------------------------------------------------------------- /pptx_tool/fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achimnol/pptx-tool/HEAD/pptx_tool/fix.py -------------------------------------------------------------------------------- /pptx_tool/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achimnol/pptx-tool/HEAD/pptx_tool/package.py -------------------------------------------------------------------------------- /pptx_tool/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achimnol/pptx-tool/HEAD/pptx_tool/types.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achimnol/pptx-tool/HEAD/pyproject.toml -------------------------------------------------------------------------------- /themes/freesentation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achimnol/pptx-tool/HEAD/themes/freesentation.json -------------------------------------------------------------------------------- /themes/inter-pretendard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achimnol/pptx-tool/HEAD/themes/inter-pretendard.json -------------------------------------------------------------------------------- /themes/nanum-barun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achimnol/pptx-tool/HEAD/themes/nanum-barun.json -------------------------------------------------------------------------------- /themes/nanum-square-round.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achimnol/pptx-tool/HEAD/themes/nanum-square-round.json -------------------------------------------------------------------------------- /themes/nanum-square.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achimnol/pptx-tool/HEAD/themes/nanum-square.json -------------------------------------------------------------------------------- /themes/office.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achimnol/pptx-tool/HEAD/themes/office.json -------------------------------------------------------------------------------- /themes/pretendard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achimnol/pptx-tool/HEAD/themes/pretendard.json --------------------------------------------------------------------------------