com.vladsch.flexmark.ext.gitlab.GitLabIns Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flexmark-ext-gitlab Show documentation
Show all versions of flexmark-ext-gitlab Show documentation
flexmark-java extension for GitLab Flavoured Markdown
package com.vladsch.flexmark.ext.gitlab;
import com.vladsch.flexmark.util.sequence.BasedSequence;
/**
* A Ins node
*/
public class GitLabIns extends GitLabInline {
public GitLabIns() {
}
public GitLabIns(BasedSequence chars) {
super(chars);
}
public GitLabIns(BasedSequence openingMarker, BasedSequence text, BasedSequence closingMarker) {
super(openingMarker, text, closingMarker);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy