Export effort and clocksum from org-mode?

I am tracking a project in org-mode, which works well for me. I have all my planned work, tasks are evaluated and time is tracked.

I export it ~ once a week for other people to watch, but I cannot get this effort and CLOCKSUM to show in the exported file.

How to do it?

+6
source share
1 answer

You can:

  • Set org-export-with-drawers to t . This will export the box properties below the header. It is exported as an example block, so if you want it to have its own class for CSS selection, you will need to define your own export-export-format function. I am using the following configuration:

     (setq org-export-with-drawers t) (defun jbd-org-export-format-drawer (name content) "Export drawers to drawer HTML class." (setq content (org-remove-indentation content)) (format "@<div class=\"drawer\">% s@ </div>\n" content)) (setq org-export-format-drawer-function 'jbd-org-export-format-drawer) 

OR

I use both methods for the current project.

+9
source

Source: https://habr.com/ru/post/895738/


All Articles