period expressions: allow "until", like Ledger (synonym for "to")
This commit is contained in:
parent
34dd7bf053
commit
10f8dc84a5
@ -1091,7 +1091,7 @@ fromdatespanp rdate = do
|
|||||||
|
|
||||||
todatespanp :: Day -> TextParser m DateSpan
|
todatespanp :: Day -> TextParser m DateSpan
|
||||||
todatespanp rdate = do
|
todatespanp rdate = do
|
||||||
choice [string' "to", string' "-"] >> skipMany spacenonewline
|
choice [string' "to", string' "until", string' "-"] >> skipMany spacenonewline
|
||||||
DateSpan Nothing . Just . fixSmartDate rdate <$> smartdate
|
DateSpan Nothing . Just . fixSmartDate rdate <$> smartdate
|
||||||
|
|
||||||
justdatespanp :: Day -> TextParser m DateSpan
|
justdatespanp :: Day -> TextParser m DateSpan
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user