Re: [Orgmode] parsing formatted text

2010-10-29 Thread Eric Schulte
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, >

[Orgmode] parsing formatted text

2010-10-29 Thread Aidan Gauland
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