com.vladsch.flexmark.ext.gfm.strikethrough.SubscriptVisitorExt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flexmark-ext-gfm-strikethrough Show documentation
Show all versions of flexmark-ext-gfm-strikethrough Show documentation
flexmark-java extension for GFM strikethrough using ~~ (GitHub Flavored Markdown)
The newest version!
package com.vladsch.flexmark.ext.gfm.strikethrough;
import com.vladsch.flexmark.util.ast.VisitHandler;
public class SubscriptVisitorExt {
public static VisitHandler>[] VISIT_HANDLERS(V visitor) {
return new VisitHandler>[] {
new VisitHandler<>(Subscript.class, visitor::visit),
};
}
}