Skip to content

Commit 452099d

Browse files
authored
Issue template: prevent unwanted breaks in descriptions
Super minor nit, but I noticed the description breaking from the newline. We don't need the literal line breaks in the Markdown string, so replace the literal string `|` with a folded string `>`.
1 parent d009a12 commit 452099d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ type: Bug
66
body:
77
- type: markdown
88
attributes:
9-
value: |
9+
value: >
1010
Thanks for taking the time to file an issue! **Please provide as much
1111
detail as you can** so we can properly confirm, triage, and fix your bug.
1212
1313
- type: textarea
1414
id: about
1515
attributes:
1616
label: Description
17-
description: |
17+
description: >
1818
Describe the bug you're seeing. Provide detail such as **where in the
1919
game** you experienced it and **what you were doing** in the game when
2020
it happened. If you can make it happen reliably, **share the steps to

0 commit comments

Comments
 (0)