walokra / markdown-page-generator-plugin

Markdown to HTML Page Generator Maven Plugin
MIT License
57 stars 48 forks source link

CheckBox rendering #35

Open bbassac opened 5 years ago

bbassac commented 5 years ago

He, When trying to render a todo-list like check boxes like :

Could it be possible to render as checkboxes in the gernerated Html ?

walokra commented 4 years ago

Task lists are supported by flexmark-java with the TASKLISTITEMS extension, e.g. in pom.xml set the following configuration: <pegdownExtensions>TASKLISTITEMS</pegdownExtensions>.

In markdown file write:

Task List

- [x] Task 1
- [ ] Task 2
- [x] Task 3

Does this answer your question?