summaryrefslogtreecommitdiff
path: root/src/Text
diff options
context:
space:
mode:
Diffstat (limited to 'src/Text')
-rw-r--r--src/Text/Pandoc/Shared.hs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Shared.hs b/src/Text/Pandoc/Shared.hs
index 95a422287..0956ee03e 100644
--- a/src/Text/Pandoc/Shared.hs
+++ b/src/Text/Pandoc/Shared.hs
@@ -682,6 +682,8 @@ taskListItemToAscii = handleTaskListItem toMd
where
toMd (Str "☐" : Space : is) = rawMd "[ ]" : Space : is
toMd (Str "☒" : Space : is) = rawMd "[x]" : Space : is
+ toMd (Str "❏" : Space : is) = rawMd "[ ]" : Space : is
+ toMd (Str "✓" : Space : is) = rawMd "[x]" : Space : is
toMd is = is
rawMd = RawInline (Format "markdown")