com.vladsch.flexmark.ext.gfm.tasklist.TaskListItemPlacement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flexmark-ext-gfm-tasklist Show documentation
Show all versions of flexmark-ext-gfm-tasklist Show documentation
flexmark-java extension to convert bullet list items that start with [ ] to a TaskListItem node
The newest version!
package com.vladsch.flexmark.ext.gfm.tasklist;
public enum TaskListItemPlacement {
AS_IS,
INCOMPLETE_FIRST,
INCOMPLETE_NESTED_FIRST,
COMPLETE_TO_NON_TASK,
COMPLETE_NESTED_TO_NON_TASK,
}