├── .github └── ISSUE_TEMPLATE │ ├── Bug_Report.md │ ├── Feature.md │ └── Question.md └── README.md /.github/ISSUE_TEMPLATE/Bug_Report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug Report 3 | about: Report a bug 4 | labels: bug 5 | --- 6 | 7 | ## Bug Description 8 | 9 | ### Reproduction steps 10 | 11 | ### Expected Outcome 12 | 13 | ### Browser 14 | 15 | Include browser name and version 16 | 17 | ### OS 18 | 19 | Include OS name and version 20 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature 3 | about: Suggest a new feature / enhancement 4 | labels: enhancement 5 | --- 6 | 7 | ## Feature 8 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Question.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Question 3 | about: Ask a question / start a discussion. 4 | labels: question 5 | --- 6 | 7 | ## Question 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |