![JAR search and dependency download from the Maven repository](/logo.png)
com.vladsch.flexmark.ast.HtmlInlineBase 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.Node;
import com.vladsch.flexmark.util.sequence.BasedSequence;
import org.jetbrains.annotations.NotNull;
/**
* Inline HTML element.
*
* @see CommonMark Spec
*/
public abstract class HtmlInlineBase extends Node {
@NotNull
@Override
public BasedSequence[] getSegments() {
return EMPTY_SEGMENTS;
}
@Override
public void getAstExtra(@NotNull StringBuilder out) {
astExtraChars(out);
}
public HtmlInlineBase() {
}
public HtmlInlineBase(BasedSequence chars) {
super(chars);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy