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

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

There is a newer version: 4.15.102
Show newest version
package com.vladsch.flexmark.ast;

import com.vladsch.flexmark.util.sequence.BasedSequence;
import org.jetbrains.annotations.NotNull;

/**
 * Inline HTML element.
 *
 * @see CommonMark Spec
 */
public class HtmlInline extends HtmlInlineBase {
    @NotNull
    @Override
    public BasedSequence[] getSegments() {
        return EMPTY_SEGMENTS;
    }

    @Override
    public void getAstExtra(@NotNull StringBuilder out) {
        astExtraChars(out);
    }

    public HtmlInline() {
    }

    public HtmlInline(BasedSequence chars) {
        super(chars);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy