theldoria
theldoria

Reputation: 378

org-mode html export with checkbox

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

Upvotes: 5

Views: 1489

Answers (1)

abo-abo
abo-abo

Reputation: 20372

Easy:

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

Upvotes: 5

Related Questions