Hi Aidan,
You could pass the text through the `org-export-string' function to
generate a string of HTML from a string of Org markup.
e.g.
(org-export-string "plain plain *bold* plain" "html")
returns the following string
"plain plain bold plain"
-- Eric
Aidan Gauland writes:
> Hello,
>
Hello,
I have written an elisp program to generate an ATOM feed from an
org-mode file. I want to generate appropiate HTML from fromatted text
(such as *bold* and /italic/). Since it does not use org's export
module (for which this isn't really appropriate anyway), I have no
idea if there is any