Skip to content

Commit 397fc90

Browse files
committed
update emoji ext to latest emoji cheat-sheet and github api versions.
1 parent c573242 commit 397fc90

File tree

75 files changed

+5778
-3027
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+5778
-3027
lines changed

VERSION.md

+17

flexmark-docx-converter/src/test/resources/docx_converter_issues_ast_spec.md

+18-18

flexmark-ext-attributes/src/test/resources/ext_attributes_ast_spec.md

+2-2

flexmark-ext-emoji/src/main/java/com/vladsch/flexmark/ext/emoji/EmojiExtension.java

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ public class EmojiExtension implements Parser.ParserExtension, HtmlRenderer.Html
2525
final public static DataKey<String> ROOT_IMAGE_PATH = new DataKey<>("ROOT_IMAGE_PATH", "/img/");
2626
final public static DataKey<EmojiShortcutType> USE_SHORTCUT_TYPE = new DataKey<>("USE_SHORTCUT_TYPE", EmojiShortcutType.EMOJI_CHEAT_SHEET);
2727
final public static DataKey<EmojiImageType> USE_IMAGE_TYPE = new DataKey<>("USE_IMAGE_TYPE", EmojiImageType.IMAGE_ONLY);
28+
final public static DataKey<Boolean> USE_UNICODE_FILE_NAMES = new DataKey<>("USE_UNICODE_FILE_NAMES", false);
2829

2930
private EmojiExtension() {
3031
}

0 commit comments

Comments
 (0)