Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ The resulting `issue` object will look like the following:
shape: ['square'],
sounds: ['re', 'mi'],
topics: [],
description: "This is a description.\n\nIt has multiple lines.\n\nIt's pretty cool!",
description: 'This is a description.\n\nIt has multiple lines!',
notes: '- Note\n- Another note\n- Lots of notes',
code: 'const thing = new Thing()\nthing.doThing()',
'code-string': 'thing.toString()',
Expand Down
4 changes: 1 addition & 3 deletions __fixtures__/example/issue.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,7 @@ _No response_

This is a description.

It has multiple lines.

It's pretty cool!
It has multiple lines!

### The Notes About the Thing

Expand Down
2 changes: 1 addition & 1 deletion __fixtures__/example/parsed-issue.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"shape": ["square"],
"sounds": ["re", "mi"],
"topics": [],
"description": "This is a description.\n\nIt has multiple lines.\n\nIt's pretty cool!",
"description": "This is a description.\n\nIt has multiple lines!",
"notes": "- Note\n- Another note\n- Lots of notes",
"code": "const thing = new Thing()\nthing.doThing()",
"code-string": "thing.toString()",
Expand Down
Loading