Nicolas Goaziou writes: > I prefer not to mix the two methods as it would be fragile (e.g. what > happens if an attribute is defined both outside and inside the :options > keyword?).
Perhaps not much. As I reported (the reason :options wasn't working), in Firefox the second definition of the attribute is simply quietly ignored. But if you prefer to keep it clean, I'm fine with that. >> to batch convert files from verbatim html attributes to plist syntax with >> something like the following -- USE AT OWN RISK, NO WARRANTY IMPLIED: >> >> : perl -i.bak -pe 's/([a-z]+)=([\"\'])(.*?)\2/:\1 \2/g if >> /^#\+attr_html/i' *.org Oops, in that message I accidentally copy-pasted a WRONG version. Hopefully didn't work at all, or it would mess things up. Sorry. This seems to work well: : perl -i.bak -pe "s/([a-z]+)=(\"|')(.*?)\2/:\1 \3/g if /^#\+attr_html/i" filename.org > Would you mind adding it to Worg section about the migration to > Org 8.0? It would be quite useful. Will do. Yours, Christian