[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[O] [PATCH] Make html export honor html-viewport option
From: |
Richard Hoskins |
Subject: |
[O] [PATCH] Make html export honor html-viewport option |
Date: |
Sat, 18 Jul 2015 23:08:53 -0400 |
* ox-html.el (options-alist) Change html-viewport to honor
html-viewport: option in org file.
Value of `html-viewport' is being checked by `org-html--build-meta-info',
but it could not be changed due to its `options-alist' entry.
TINYCHANGE
---
lisp/ox-html.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lisp/ox-html.el b/lisp/ox-html.el
index 17695f0..bb0c258 100644
--- a/lisp/ox-html.el
+++ b/lisp/ox-html.el
@@ -163,7 +163,7 @@
(:html-use-infojs nil nil org-html-use-infojs)
(:html-use-unicode-chars nil nil org-html-use-unicode-chars)
(:html-validation-link nil nil org-html-validation-link)
- (:html-viewport nil nil org-html-viewport)
+ (:html-viewport nil "html-viewport" org-html-viewport)
(:html-inline-images nil nil org-html-inline-images)
(:html-table-attributes nil nil org-html-table-default-attributes)
(:html-table-row-tags nil nil org-html-table-row-tags)
--
2.1.0
- [O] [PATCH] Make html export honor html-viewport option,
Richard Hoskins <=