Skip to content

Commit c41a5b3

Browse files
committed
more testing
1 parent c3ef3ad commit c41a5b3

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

.github/ISSUE_TEMPLATE/test.yaml

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: "Test Issue Template"
22
title: "Test Issue Template Title"
33
description: |
4-
Sample description that uses _markdown_.
4+
Sample description does _not_ render markdown in the "new issue dialog".
55
labels: ["what"]
66
body:
77
- type: markdown
@@ -10,8 +10,19 @@ body:
1010
## Sample Markdown Section
1111
This is a sample section that uses **bold** and _italic_ text.
1212
13+
can it have a diagram?
14+
15+
```mermaid
16+
graph TD;
17+
A[Start] --> B{Decision};
18+
B -->|Yes| C[Option 1];
19+
B -->|No| D[Option 2];
20+
C --> E[End];
21+
D --> E;
22+
```
23+
1324
- type: input
14-
id: sample_input
25+
id: sample_input # can be passed on the query string
1526
attributes:
1627
label: "Sample Input"
1728
description: "This is a sample input field."
@@ -22,8 +33,8 @@ body:
2233
attributes:
2334
label: "Steps to do a thing"
2435
description: |
25-
This is a sample checkboxes section that uses _markdown_.
36+
This is a sample checkboxes section that uses _markdown_ just fine.
2637
options:
2738
- label: step 1
2839
- label: |
29-
step 2 uses _markdown_.
40+
step 2 uses _markdown_ just fine.

0 commit comments

Comments
 (0)