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

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

The newest version!
package com.greenpepper.shaded.com.vladsch.flexmark.ast;

import com.greenpepper.shaded.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