
com.vladsch.flexmark.ext.abbreviation.AbbreviationVisitorExt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flexmark-ext-abbreviation Show documentation
Show all versions of flexmark-ext-abbreviation Show documentation
flexmark-java extension for defining abbreviations and turning appearance of these abbreviations in text into links with titles consisting of the expansion of the abbreviation
The newest version!
package com.vladsch.flexmark.ext.abbreviation;
import com.vladsch.flexmark.util.ast.VisitHandler;
public class AbbreviationVisitorExt {
public static VisitHandler>[] VISIT_HANDLERS(V visitor) {
return new VisitHandler>[] {
new VisitHandler<>(AbbreviationBlock.class, visitor::visit),
new VisitHandler<>(Abbreviation.class, visitor::visit),
};
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy