On Tue, Sep 3, 2013 at 10:34 AM, Nicolas Goaziou <n.goaz...@gmail.com> wrote: > Matt Price <mopto...@gmail.com> writes:
> The following should work: > > (defun matt-org-export-filter-timestamp-function (timestamp backend info) > "removes relevant brackets from a timestamp" > (when (org-export-derived-backend-p backend 'html) > (replace-regexp-in-string "&[lg]t;\\|[][]" "" timestamp))) > > (add-to-list 'org-export-filter-timestamp-functions > 'matt-org-export-filter-timestamp-function) > that did it! Thanks Nicolas.