Skip to content

Commit

Permalink
Add new checkbox status “in question”: [?]
Browse files Browse the repository at this point in the history
Resolves #44.

I think the question mark icon would be quite useful.

Regarding the “pause” one, I’m not fully convinced, also partly because
I think there is no intuitive symbol to represent it.

Overall, I think 5 statuses is enough for now.
  • Loading branch information
jotaen authored Jan 12, 2023
1 parent f638a77 commit bd61806
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion Specification.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# [x]it! Specification

**Version 1.0**
**Version 1.1**

[x]it! is a plain-text file format for todos and check lists.

Expand Down Expand Up @@ -54,6 +54,7 @@ It MUST be either of:
- `x` (the letter x) for *checked*
- `@` (at) for *ongoing*
- `~` (tilde) for *obsolete*
- `?` (question mark) for *in question*

> #### Example
>
Expand All @@ -62,6 +63,7 @@ It MUST be either of:
> [x] This is a checked item
> [@] This is an ongoing item
> [~] This is an obsolete item
> [?] This is an item in question
> ```
### Priority
Expand Down Expand Up @@ -214,3 +216,9 @@ or the opening square bracket character `[`.
- Letter: a character from the Unicode Letter category (L)
- Newline: `\n` or `\r\n`
- Punctuation: a character from the Unicode Punctuation category (P)

### Changelog

#### Version 1.1

- Add new checkbox status “in question”: `[?]`

0 comments on commit bd61806

Please sign in to comment.