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

com.vladsch.flexmark.ext.wikilink.WikiImage Maven / Gradle / Ivy

There is a newer version: 0.64.8
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy