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

com.vladsch.flexmark.ext.abbreviation.AbbreviationVisitorExt Maven / Gradle / Ivy

Go to download

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