com.vladsch.flexmark.ext.wikilink.WikiImage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flexmark-ext-wikilink Show documentation
Show all versions of flexmark-ext-wikilink Show documentation
flexmark-java extension parsing and rendering wiki links
package com.vladsch.flexmark.ext.wikilink;
import com.vladsch.flexmark.util.sequence.BasedSequence;
public class WikiImage extends WikiNode {
public WikiImage(boolean linkIsFirst) {
super(linkIsFirst);
}
public WikiImage(BasedSequence chars, boolean linkIsFirst, boolean canEscapePipe) {
super(chars, linkIsFirst, false, canEscapePipe, false);
}
}