![JAR search and dependency download from the Maven repository](/logo.png)
com.vladsch.flexmark.ext.emoji.EmojiVisitorExt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flexmark-ext-emoji Show documentation
Show all versions of flexmark-ext-emoji Show documentation
flexmark-java extension for emoji shortcuts using Emoji-Cheat-Sheet.com http://www.emoji-cheat-sheet.com/
package com.vladsch.flexmark.ext.emoji;
import com.vladsch.flexmark.util.ast.VisitHandler;
import com.vladsch.flexmark.util.ast.Visitor;
public class EmojiVisitorExt {
public static VisitHandler>[] VISIT_HANDLERS(V visitor) {
return new VisitHandler>[] {
new VisitHandler(Emoji.class, new Visitor() {
@Override
public void visit(Emoji node) {
visitor.visit(node);
}
}),
};
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy