com.vladsch.flexmark.ext.typographic.TypographicVisitorExt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flexmark-ext-typographic Show documentation
Show all versions of flexmark-ext-typographic Show documentation
flexmark-java extension for typographic
package com.vladsch.flexmark.ext.typographic;
import com.vladsch.flexmark.util.ast.VisitHandler;
public class TypographicVisitorExt {
public static VisitHandler>[] VISIT_HANDLERS(V visitor) {
return new VisitHandler>[] {
new VisitHandler<>(TypographicSmarts.class, visitor::visit),
new VisitHandler<>(TypographicQuotes.class, visitor::visit),
};
}
}