├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── others---question.md ├── label-actions.yml └── workflows │ └── process-labels.yml ├── CODE_OF_CONDUCT.md ├── README.md └── SECURITY.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typora/typora-issues/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typora/typora-issues/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/others---question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typora/typora-issues/HEAD/.github/ISSUE_TEMPLATE/others---question.md -------------------------------------------------------------------------------- /.github/label-actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typora/typora-issues/HEAD/.github/label-actions.yml -------------------------------------------------------------------------------- /.github/workflows/process-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typora/typora-issues/HEAD/.github/workflows/process-labels.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typora/typora-issues/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typora/typora-issues/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typora/typora-issues/HEAD/SECURITY.md --------------------------------------------------------------------------------