diff options
author | Arun Isaac | 2023-01-22 22:38:58 +0000 |
---|---|---|
committer | Arun Isaac | 2023-01-23 00:28:11 +0000 |
commit | d1df6854fb487ce42150e6c7c393279f1c4f0ab5 (patch) | |
tree | b75d43ee3abab5377f211d386c766861a7092cf2 /issues | |
parent | bdc092231eaf6dd1cd226d0bd6c6f429e21057e6 (diff) | |
download | tissue-d1df6854fb487ce42150e6c7c393279f1c4f0ab5.tar.gz tissue-d1df6854fb487ce42150e6c7c393279f1c4f0ab5.tar.lz tissue-d1df6854fb487ce42150e6c7c393279f1c4f0ab5.zip |
issues: Allow checkboxes without a space.
* issues/allow-checkboxes-without-a-space.gmi: New file.
* tissue/issue.scm (file-details): Add TODO note.
Diffstat (limited to 'issues')
-rw-r--r-- | issues/allow-checkboxes-without-a-space.gmi | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/issues/allow-checkboxes-without-a-space.gmi b/issues/allow-checkboxes-without-a-space.gmi new file mode 100644 index 0000000..c8d93d1 --- /dev/null +++ b/issues/allow-checkboxes-without-a-space.gmi @@ -0,0 +1,12 @@ +# Allow checkboxes without a space + +* tags: bug + +Checkboxes without a space in them are not detected correctly by our issue gemtext parser. They should be. + +In the example below, the first checklist item is not detected correctly. +``` +* [] Checkbox without a space +* [ ] Checkbox with a space +* [x] Completed checkbox +``` |