![JAR search and dependency download from the Maven repository](/logo.png)
com.vladsch.flexmark.ast.HtmlCommentBlock 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.util.ast.BlockContent;
import com.vladsch.flexmark.util.sequence.BasedSequence;
import java.util.List;
/**
* HTML block
*
* @see CommonMark Spec
*/
public class HtmlCommentBlock extends HtmlBlockBase {
public HtmlCommentBlock() {
}
public HtmlCommentBlock(BasedSequence chars) {
super(chars);
}
public HtmlCommentBlock(BasedSequence chars, List segments) {
super(chars, segments);
}
public HtmlCommentBlock(BlockContent blockContent) {
super(blockContent);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy