From: John Kitchin <jkitchin@andrew.cmu.edu>
To: emacs-orgmode@gnu.org
Cc: John Kitchin <jkitchin@andrew.cmu.edu>
Subject: [PATCH 1/3] add id attribute to example-block on html export.
Date: Mon, 28 Mar 2016 15:06:50 -0400 [thread overview]
Message-ID: <1459192012-82531-1-git-send-email-jkitchin@andrew.cmu.edu> (raw)
This allows you to hyperlink to the block.
---
lisp/ox-html.el | 15 ++++++++++++---
1 file changed, 12 insertions(+), 3 deletions(-)
diff --git a/lisp/ox-html.el b/lisp/ox-html.el
index d07cdcc..92de209 100644
--- a/lisp/ox-html.el
+++ b/lisp/ox-html.el
@@ -2370,14 +2370,23 @@ contextual information."
;;;; Example Block
-(defun org-html-example-block (example-block _contents info)
+(defun org-html-example-block (example-block contents info)
"Transcode a EXAMPLE-BLOCK element from Org to HTML.
CONTENTS is nil. INFO is a plist holding contextual
information."
(if (org-export-read-attribute :attr_html example-block :textarea)
(org-html--textarea-block example-block)
- (format "<pre class=\"example\">\n%s</pre>"
- (org-html-format-code example-block info))))
+ (let ((attributes (org-export-read-attribute :attr_html example-block)))
+ (when (org-element-property :name example-block)
+ (setq attributes (plist-put
+ attributes :id
+ (org-element-property :name example-block))))
+ (setq attributes (org-html--make-attribute-string attributes))
+ (when (not (equal attributes ""))
+ (setq attributes (concat " " attributes)))
+ (format "<pre class=\"example\"%s>\n%s</pre>"
+ attributes
+ (org-html-format-code example-block info)))))
;;;; Export Snippet
--
2.4.4
next reply other threads:[~2016-03-28 19:07 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-03-28 19:06 John Kitchin [this message]
2016-03-28 19:06 ` [PATCH 2/3] add html attributes to quote-block John Kitchin
2016-03-28 19:06 ` [PATCH 3/3] add html attributes to special blocks John Kitchin
2016-03-30 15:03 ` [PATCH 1/3] add id attribute to example-block on html export Nicolas Goaziou
2016-03-31 20:58 ` John Kitchin
2016-04-02 8:45 ` Nicolas Goaziou
2016-04-04 0:31 ` John Kitchin
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=1459192012-82531-1-git-send-email-jkitchin@andrew.cmu.edu \
--to=jkitchin@andrew.cmu.edu \
--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).