From 8ee7d0997336641c6277262e987ab4c923cd4459 Mon Sep 17 00:00:00 2001 From: MORIOKA Tomohiko Date: Wed, 20 Jul 2016 21:56:46 +0900 Subject: [PATCH] (est-format-unit): Treat `image-list' as the same as `list'. --- est-format.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/est-format.el b/est-format.el index 8c8747d..75493a9 100644 --- a/est-format.el +++ b/est-format.el @@ -62,7 +62,8 @@ props (nth 1 format-unit) children (nthcdr 2 format-unit)) (cond - ((eq name 'list) + ((or (eq name 'list) + (eq name 'image-list)) (cond ((or (eq output-format 'plain-text) (eq output-format 'wiki-text)) -- 1.7.10.4