diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2023-06-13 01:43:37 +0200 |
---|---|---|
committer | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2023-06-13 01:43:37 +0200 |
commit | 03322672782a6318b019eff33fe44ec800d6f12c (patch) | |
tree | 9d807e1585cf28a1ea98e87b855932dba00f1880 /.github/ISSUE_TEMPLATE | |
parent | 8e18b4698edd00f83af0be05bb3374f92fecaeb9 (diff) | |
download | svg.js-03322672782a6318b019eff33fe44ec800d6f12c.tar.gz svg.js-03322672782a6318b019eff33fe44ec800d6f12c.zip |
dependency updates, easier formatting
Diffstat (limited to '.github/ISSUE_TEMPLATE')
-rw-r--r-- | .github/ISSUE_TEMPLATE/bug-report.md | 1 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/feature-request.md | 6 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/other.md | 1 |
3 files changed, 3 insertions, 5 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md index 77280cb..21ab143 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.md +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -1,7 +1,6 @@ --- name: Bug Report about: 🐞 Report a bug that you found - --- # Bug report diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md index acaaef5..9cf9d7b 100644 --- a/.github/ISSUE_TEMPLATE/feature-request.md +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -1,15 +1,14 @@ --- name: Feature Request about: 🎂 Ask nicely for something you reaaaaaaaally want - --- - # Feature request > **For support questions, please use [stackoverflow](https://stackoverflow.com/questions/tagged/svg.js) with the tag svg.js or head to our chat over at [gitter](https://gitter.im/svgdotjs/svg.js)**. If you want to make a feature request, here are some guidelines to make a good one: + - Add example code and usage for feature requests to see how a user would use it - Tell us the benefits (everything is allowed) - Make a simple use case like the one below. Obviously your feature request shouldn't be so silly. But make it clear to the maintainers what you want added and how you plan to use it 😃 @@ -19,13 +18,14 @@ If you want to make a feature request, here are some guidelines to make a good o It would be cool if SVG.js could be used to easily draw smiley the meme, it would make my life so much easier when I want to have memes in my svg. ### Benefits + - Drawing memes would be quick and easy - Memes are funny I think the syntax to achieve this should be: ```js -let meme = draw.meme({radius: 300, cx: 50, cy: 80, lookAt: [30, 50]}) +let meme = draw.meme({ radius: 300, cx: 50, cy: 80, lookAt: [30, 50] }) ``` Then the user could easily change where the smiley is looking with: diff --git a/.github/ISSUE_TEMPLATE/other.md b/.github/ISSUE_TEMPLATE/other.md index 75287e6..b3769d0 100644 --- a/.github/ISSUE_TEMPLATE/other.md +++ b/.github/ISSUE_TEMPLATE/other.md @@ -1,7 +1,6 @@ --- name: Other Issue about: 🍺 Something else... - --- > **For support questions, please use [stackoverflow](https://stackoverflow.com/questions/tagged/svg.js) with the tag svg.js or head to our chat over at [gitter](https://gitter.im/svgdotjs/svg.js), if you have a bug report or feature request, use those templates**. |