com.vladsch.flexmark.ast.ParagraphItemContainer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flexmark Show documentation
Show all versions of flexmark Show documentation
Core of flexmark-java (implementation of CommonMark for parsing markdown and rendering to HTML)
package com.vladsch.flexmark.ast;
import com.vladsch.flexmark.parser.ListOptions;
import com.vladsch.flexmark.util.data.DataHolder;
public interface ParagraphItemContainer {
boolean isParagraphInTightListItem(Paragraph node);
boolean isItemParagraph(Paragraph node);
boolean isParagraphWrappingDisabled(Paragraph node, ListOptions listOptions, DataHolder options);
}