All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vladsch.flexmark.ast.HtmlCommentBlock Maven / Gradle / Ivy

Go to download

Core of flexmark-java (implementation of CommonMark for parsing markdown and rendering to HTML)

There is a newer version: 0.64.8
Show newest version
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