diff options
| author | 2017-03-20 18:46:31 +0000 | |
|---|---|---|
| committer | 2017-03-20 13:46:31 -0500 | |
| commit | 48a2865c6d050d226537d9926bbdb9049eea8fa0 (patch) | |
| tree | 25445a4b7c11fc00c849ba84f8aca87ec7b16e4e /.github | |
| parent | Event OnQuit: Change example to a working example. (diff) | |
| download | KVIrc-48a2865c6d050d226537d9926bbdb9049eea8fa0.tar.gz KVIrc-48a2865c6d050d226537d9926bbdb9049eea8fa0.tar.bz2 KVIrc-48a2865c6d050d226537d9926bbdb9049eea8fa0.zip | |
fix: hide comments in issues in new posts (#2213)
this happens because comments can only have one ( open and ) close bracket. so ``` [//]:# (this is a comment (and it) shouldnt show up)``` shows up unless the inner brackets are escaped like [//]:# (this is a comment \(and it\) shouldnt show up) or theres no inner brackets or ```<!-- this -->``` is used.
or something else, no idea
this should fix the issue.
Diffstat (limited to '.github')
| -rw-r--r-- | .github/ISSUE_TEMPLATE.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 7e3e0eef7..cba9d878e 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -4,7 +4,7 @@ ### Actual behavior -[//]: # (Besides the text description, include any screenshot(s) that help us visualize the issue you're facing) +[//]:# (Besides the text description, include any screenshots that help us visualize the issue you're facing) ### Steps to reproduce the issue 1. @@ -12,10 +12,10 @@ 3. ### System information -[//]: # (Type "/about.kvirc" (or click "Help → About KVIrc") and copy&paste the details from the "Executable Information" tab below between ``` marks) -[//]: # (Also Enter any OS information the "Executable Information" tab doesn't contain, e.g. KDE, Gentoo, Linux Mint, etc.) +[//]:# (Type ```/about.kvirc``` or click "Help → About KVIrc" and copy & paste the details from the "Executable Information" tab below between ``` marks) +[//]:# (Also Enter any OS information the "Executable Information" tab doesn't contain, e.g. KDE, Gentoo, Linux Mint, etc.) ``` ``` -[//]: # (If you experienced crashes, segfaults please also include a stacktrace below, For how-to read: https://github.com/kvirc/KVIrc/wiki/Grabbing-a-useful-backtrace.) +[//]:# (If you experienced crashes or segfaults please also include a stacktrace below, For how-to read: https://github.com/kvirc/KVIrc/wiki/Grabbing-a-useful-backtrace.) |
