From: Nicolas Goaziou <n.goaziou@gmail.com>
To: Yujie Wen <yjwen.ty@gmail.com>
Cc: "emacs-orgmode@gnu.org Mode" <emacs-orgmode@gnu.org>
Subject: Re: How to convert a string to Org parsed tree
Date: Sun, 28 Jul 2013 13:07:31 +0200 [thread overview]
Message-ID: <87iozv0wp8.fsf@gmail.com> (raw)
In-Reply-To: <CAHenMCGJOdNeAyz5u=GNknK9qt4DcAY2NJz2==84ZMOWHXR2xA@mail.gmail.com> (Yujie Wen's message of "Sun, 28 Jul 2013 18:18:27 +0800")
Hello,
Yujie Wen <yjwen.ty@gmail.com> writes:
> I am working on the org-reveal exporter and I need to convert a string
> get from org-element-property into HTML format. The property string have
> some Org-mode markups that need to be converted to relevant HTML labels.
> For example, a string of "/italic/" to "<i>italic</i>"
>
> Is there any existing Org-mode functions can help me to achieve this kind
> of functionality?
For interactive functions, you can use `org-export-string-as'. E.g.,
(org-export-string-as "/italic/" 'html 'body-only)
If you don't want the surronding paragraph, you can use the same
function with an anonymous export back-end derived from HTML:
(org-export-string-as "/italic/"
(org-export-create-backend
:parent 'html
:transcoders '((paragraph . (lambda (e c i) c))))
'body-only)
But, from within an export back-end, there are probably other ways that
will not require to collect export options again. E.g,
(org-export-data-with-backend
(org-element-parse-secondary-string
"/italic/" org-element-all-successors)
'html info)
Regards,
--
Nicolas Goaziou
next prev parent reply other threads:[~2013-07-28 11:07 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-07-28 10:18 How to convert a string to Org parsed tree Yujie Wen
2013-07-28 10:43 ` Robert Klein
2013-07-28 11:07 ` Nicolas Goaziou [this message]
2013-07-28 12:17 ` Eric Abrahamsen
2013-07-28 14:16 ` Yujie Wen
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=87iozv0wp8.fsf@gmail.com \
--to=n.goaziou@gmail.com \
--cc=emacs-orgmode@gnu.org \
--cc=yjwen.ty@gmail.com \
/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).