com.vladsch.flexmark.ext.wikilink.WikiLinkVisitorExt 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.ast.VisitHandler;
public class WikiLinkVisitorExt {
public static VisitHandler>[] VISIT_HANDLERS(V visitor) {
return new VisitHandler>[] {
new VisitHandler<>(WikiLink.class, visitor::visit),
};
}
}