From 22c652599c8bfedcd27e78d7ad9544826eae7dd0 Mon Sep 17 00:00:00 2001 From: Matt Price Date: Tue, 7 Jul 2015 17:53:03 -0400 Subject: [PATCH] ox-deck: parse checkboxes properly *ox-deck.el Previously, list items with checkboxes would not build properly. This trivial and clumsy patch fixes that. --- contrib/lisp/ox-deck.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/contrib/lisp/ox-deck.el b/contrib/lisp/ox-deck.el index 915373f8a..427c7d765 100644 --- a/contrib/lisp/ox-deck.el +++ b/contrib/lisp/ox-deck.el @@ -382,7 +382,9 @@ the \"slide\" class will be added to the to the list element, which will make the list into a \"build\"." (let ((text (org-html-item item contents info))) (if (org-export-get-node-property :STEP item t) - (replace-regexp-in-string "^
  • " "
  • " text) + (progn + (replace-regexp-in-string "^
  • " "
  • " text) + (replace-regexp-in-string "^
  • " "
  • " text)) text))) (defun org-deck-link (link desc info) -- 2.11.4.GIT