Emacs org-mode, export to HTML: closed timestamps?

When exporting content in Org mode, for example, in HTML (i.e. Cc Ce hh) ...

* Some project
** DONE Some final work
   CLOSED: [2016-03-30 Wed]
   Received final report blah blah...
** DONE Final tests
   CLOSED: [2016-03-28 Mon]
...

... CLOSED timestamps are not displayed in HTML output. To see if I can see the exported timestamps at all, I manually went over and changed the DONE entry to this:

* Some project
** DONE Some final work [2016-03-30 Wed]
   CLOSED: [2016-03-30 Wed]
   Received final report blah blah...

... and then the timestamp does show HTML TOC (light gray) in the output.

Although I can use my foo editing to do this automatically, I would prefer it if I can avoid it. Is there a way to make CLOSED timestamps appear in exported HTML output in Org mode?

+4
source share
1 answer

CLOSED , org:

#+OPTIONS: p:t

. ".

+3

All Articles