├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── Plugin └── openai-4-indesign.ccx └── readme.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [RolandDreger] 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandDreger/indesign-openai/HEAD/LICENSE -------------------------------------------------------------------------------- /Plugin/openai-4-indesign.ccx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandDreger/indesign-openai/HEAD/Plugin/openai-4-indesign.ccx -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandDreger/indesign-openai/HEAD/readme.md --------------------------------------------------------------------------------