com.vladsch.flexmark.ext.gitlab.GitLabVisitorExt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flexmark-ext-gitlab Show documentation
Show all versions of flexmark-ext-gitlab Show documentation
flexmark-java extension for GitLab Flavoured Markdown
package com.vladsch.flexmark.ext.gitlab;
import com.vladsch.flexmark.util.ast.VisitHandler;
public class GitLabVisitorExt {
public static VisitHandler>[] VISIT_HANDLERS(V visitor) {
return new VisitHandler>[] {
new VisitHandler<>(GitLabIns.class, visitor::visit),
new VisitHandler<>(GitLabDel.class, visitor::visit),
new VisitHandler<>(GitLabInlineMath.class, visitor::visit),
new VisitHandler<>(GitLabBlockQuote.class, visitor::visit),
};
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy