5
votes

Is it possible in org-mode, when you export to HTML, to have checkboxes beeing exported to HTML checkboxes?

If you have, for example, this org snippet:

- [ ] item a

You become code snipptes like this in HTML:

<li><code>[&#xa0;]</code> item a

But I would like to have this instead:

<li><input type="checkbox">item a
1

1 Answers

5
votes

Easy:

(setq org-html-checkbox-type 'html)