From: "Łukasz Stelmach" <l.stelmach@samsung.com>
To: emacs-orgmode@gnu.org
Subject: [PATCH] ox-s5: update to work with refactored html backedn
Date: Thu, 4 May 2017 17:39:04 +0200 [thread overview]
Message-ID: <874lwzd8xu.fsf%l.stelmach@samsung.com> (raw)
* contrib/lisp/ox-s5.el: adapt to changes introduced by c9ca0b6d in the
way :html-divs/org-html-divs are passed to ox-html
---
It appears that for some reason the patch didn't make it to the list the
first time I sent it.
contrib/lisp/ox-s5.el | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/contrib/lisp/ox-s5.el b/contrib/lisp/ox-s5.el
index 503bfd0..7a717fe 100644
--- a/contrib/lisp/ox-s5.el
+++ b/contrib/lisp/ox-s5.el
@@ -304,13 +304,13 @@ holding export options."
"Return complete document string after HTML conversion.
CONTENTS is the transcoded contents string. INFO is a plist
holding export options."
- (let ((org-html-divs
- (if (equal (plist-get info :html-container) "li")
- (append '((content "ol" "content")) org-s5--divs)
- org-s5--divs))
- (info (plist-put
+ (let ((info (plist-put
+ (plist-put
(plist-put info :html-preamble (plist-get info :s5-preamble))
- :html-postamble (plist-get info :s5-postamble))))
+ :html-postamble (plist-get info :s5-postamble))
+ :html-divs (if (equal (plist-get info :html-container) "li")
+ (append '((content "ol" "content")) org-s5--divs)
+ org-s5--divs))))
(mapconcat
'identity
(list
--
2.1.4
next reply other threads:[~2017-05-05 8:06 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-05-04 15:39 Łukasz Stelmach [this message]
2017-05-05 8:37 ` [PATCH] ox-s5: update to work with refactored html backedn Łukasz Stelmach
-- strict thread matches above, loose matches on Subject: below --
2017-05-04 18:01 [PATCH] ox-s5: Update " Łukasz Stelmach
2017-05-06 7:05 ` Nicolas Goaziou
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.orgmode.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=874lwzd8xu.fsf%l.stelmach@samsung.com \
--to=l.stelmach@samsung.com \
--cc=emacs-orgmode@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).