├── .editorconfig ├── .gitattributes ├── .github ├── CODE_DE_CONDUITE.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── addition-to-list.md │ ├── bug_report.md │ └── removal-from-list.md └── PULL_REQUEST_TEMPLATE.md ├── LICENSE ├── README.md └── media ├── badge-flat2.svg └── mentioned-badge.svg /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhdicaire/awesome-visio/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | *.ai binary 3 | readme.md merge=union 4 | -------------------------------------------------------------------------------- /.github/CODE_DE_CONDUITE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhdicaire/awesome-visio/HEAD/.github/CODE_DE_CONDUITE.md -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhdicaire/awesome-visio/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhdicaire/awesome-visio/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/addition-to-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhdicaire/awesome-visio/HEAD/.github/ISSUE_TEMPLATE/addition-to-list.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhdicaire/awesome-visio/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/removal-from-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhdicaire/awesome-visio/HEAD/.github/ISSUE_TEMPLATE/removal-from-list.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhdicaire/awesome-visio/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhdicaire/awesome-visio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhdicaire/awesome-visio/HEAD/README.md -------------------------------------------------------------------------------- /media/badge-flat2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhdicaire/awesome-visio/HEAD/media/badge-flat2.svg -------------------------------------------------------------------------------- /media/mentioned-badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhdicaire/awesome-visio/HEAD/media/mentioned-badge.svg --------------------------------------------------------------------------------