Re: export to odt, but #text# should be coloured

2022-06-10 Thread Christian Moe
I forgot to escape the quotation marks, of course. > "@@odt:@@\\1@@odt:@@" "@@odt:@@\\1@@odt:@@"

Re: export to odt, but #text# should be coloured

2022-06-10 Thread Christian Moe
Hi, Since all formatting is defind as styles and styles are defined in separate (parts of the) files that make up an ODT file, this requires you to work with ODT styles. There may be a hack around it, I don't know. See the manual for how to use a style sheet with #+ODT_STYLES_FILE. (For a once-

Re: export to odt, but #text# should be coloured

2022-06-10 Thread Fraga, Eric
On Thursday, 9 Jun 2022 at 20:37, Uwe Brauer wrote: > Now, how can I achieve something like this for the odt export? I have used something like the following in the past: (format "%s" contents) -- : Eric S Fraga, with org release_9.5.4-521-g1105da in Emacs 29.0.50

export to odt, but #text# should be coloured

2022-06-09 Thread Uwe Brauer
Hi a short hack of the sort (interactive) (while (re-search-forward "#\\([^#]*\\)#" nil t) (replace-match "\\1"))) Allows me to export text like this #important# to HTML where the resulted text is colored in red. Now, how can I achieve something like this for the odt export? Reards Uwe