wptrainingteam / learn-theme-beta

Beta for a ressurection of the learn.wordpress.org site
https://learnwp.jco.dev
1 stars 10 forks source link

Style checkbox list items #44

Open jessecowens opened 5 years ago

jessecowens commented 5 years ago

The markdown importer is not replacing the checkboxes for lesson taxonomies. Add logic to class-markdown-import.php to detect and replace these.

In markdown, [x] is replaced with:

<input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked="">

and [ ] is replaced with:

<input type="checkbox" id="" disabled="" class="task-list-item-checkbox">

A CSS class will likely be required to style the unordered list bullets.

jessecowens commented 4 years ago

@joseph-parsley