Commit f97a19f6 authored by Bram Schoenmakers's avatar Bram Schoenmakers

%Z is a 256 color block, %z is a 16 color block

parent 29a56de0
......@@ -193,7 +193,9 @@ class ListFormatParser(object):
# relative completion date
'X': lambda t: 'x ' + humanize_date(t.completion_date()) if t.is_completed() else '',
'z': color_block
'z': color_block,
'Z': lambda t: color_block(t, p_safe=False),
}
self.format_list = self._preprocess_format()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment