Reputation: 378
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>[ ]</code> item a
But I would like to have this instead:
<li><input type="checkbox">item a
Upvotes: 5
Views: 1489