apex-ruby 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/README.md +119 -0
- data/apex-ruby.gemspec +31 -0
- data/ext/apex_ext/apex_ext.c +215 -0
- data/ext/apex_ext/apex_src/BENCHMARK.md +32 -0
- data/ext/apex_ext/apex_src/BENCHMARK_COMPARISON.md +67 -0
- data/ext/apex_ext/apex_src/CHANGELOG.md +2454 -0
- data/ext/apex_ext/apex_src/CMakeLists.txt +454 -0
- data/ext/apex_ext/apex_src/Dockerfile.linux-build +15 -0
- data/ext/apex_ext/apex_src/Formula/apex.rb +38 -0
- data/ext/apex_ext/apex_src/Info.plist.in +27 -0
- data/ext/apex_ext/apex_src/LICENSE +21 -0
- data/ext/apex_ext/apex_src/Package.swift +160 -0
- data/ext/apex_ext/apex_src/PackageSupport/README.md +17 -0
- data/ext/apex_ext/apex_src/PackageSupport/cmark-gfm/cmark-gfm_export.h +20 -0
- data/ext/apex_ext/apex_src/PackageSupport/cmark-gfm/cmark-gfm_version.h +14 -0
- data/ext/apex_ext/apex_src/PackageSupport/cmark-gfm/cmark_gfm_spm_stub.c +4 -0
- data/ext/apex_ext/apex_src/PackageSupport/cmark-gfm/config.h +41 -0
- data/ext/apex_ext/apex_src/README.md +452 -0
- data/ext/apex_ext/apex_src/VERSION +1 -0
- data/ext/apex_ext/apex_src/apex-header-2-rb@2x.webp +0 -0
- data/ext/apex_ext/apex_src/apex-plugins.json.example +20 -0
- data/ext/apex_ext/apex_src/apex.pc.in +11 -0
- data/ext/apex_ext/apex_src/cli/main.c +2720 -0
- data/ext/apex_ext/apex_src/debug_test.sh +22 -0
- data/ext/apex_ext/apex_src/docs/API_REFERENCE.md +451 -0
- data/ext/apex_ext/apex_src/docs/ARCHITECTURE.md +166 -0
- data/ext/apex_ext/apex_src/docs/CMARK_INTEGRATION.md +220 -0
- data/ext/apex_ext/apex_src/docs/CRITICMARKUP.md +501 -0
- data/ext/apex_ext/apex_src/docs/DEBUGGING.md +73 -0
- data/ext/apex_ext/apex_src/docs/FINAL_STATUS.md +391 -0
- data/ext/apex_ext/apex_src/docs/FINAL_STATUS_UPDATE.md +237 -0
- data/ext/apex_ext/apex_src/docs/FUTURE_FEATURES.md +456 -0
- data/ext/apex_ext/apex_src/docs/IAL_FEATURES.md +210 -0
- data/ext/apex_ext/apex_src/docs/IAL_STATUS.md +344 -0
- data/ext/apex_ext/apex_src/docs/INTEGRATION_EXAMPLE.m +144 -0
- data/ext/apex_ext/apex_src/docs/LIMITATIONS_RESOLVED.md +278 -0
- data/ext/apex_ext/apex_src/docs/OUTPUT_MODES.md +321 -0
- data/ext/apex_ext/apex_src/docs/PROGRESS.md +167 -0
- data/ext/apex_ext/apex_src/docs/STANDALONE_FEATURE.md +174 -0
- data/ext/apex_ext/apex_src/docs/TABLE_SPANS_STATUS.md +243 -0
- data/ext/apex_ext/apex_src/docs/TEST_COVERAGE.md +316 -0
- data/ext/apex_ext/apex_src/docs/USER_GUIDE.md +803 -0
- data/ext/apex_ext/apex_src/docs/WIKI_LINKS_ISSUE.md +91 -0
- data/ext/apex_ext/apex_src/documentation/README.md +160 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex Command Line Options.cheatsheet.txt +365 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Info.plist +24 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/C-API.html +1737 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Citations.html +1420 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Command-Line-Options.html +3574 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Configuration.html +1603 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Credits.html +910 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Examples.html +1168 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Getting-Started.html +1003 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Header-IDs.html +1308 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Home.html +1078 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Inline-Attribute-Lists.html +1622 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Installation.html +1168 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Limitations-and-Roadmap.html +1698 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Metadata-Transforms.html +1531 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Modes.html +1980 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Multi-File-Documents.html +1368 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Pandoc-Integration.html +1151 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Plugins.html +2861 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Syntax.html +3981 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Troubleshooting.html +1454 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Usage.html +1200 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Xcode-Integration.html +2066 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/docSet.dsidx +0 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/optimizedIndex.dsidx +0 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/tempOptimizedIndex.dsidx +0 -0
- data/ext/apex_ext/apex_src/documentation/docsets/ApexCLI.docset/Contents/Info.plist +22 -0
- data/ext/apex_ext/apex_src/documentation/docsets/ApexCLI.docset/Contents/Resources/Documents/cheatset_resources/Open_Sans.woff +0 -0
- data/ext/apex_ext/apex_src/documentation/docsets/ApexCLI.docset/Contents/Resources/Documents/cheatset_resources/Open_Sans_Bold.woff +0 -0
- data/ext/apex_ext/apex_src/documentation/docsets/ApexCLI.docset/Contents/Resources/Documents/cheatset_resources/Open_Sans_Bold_Italic.woff +0 -0
- data/ext/apex_ext/apex_src/documentation/docsets/ApexCLI.docset/Contents/Resources/Documents/cheatset_resources/Open_Sans_Extrabold.woff +0 -0
- data/ext/apex_ext/apex_src/documentation/docsets/ApexCLI.docset/Contents/Resources/Documents/cheatset_resources/Open_Sans_Extrabold_Italic.woff +0 -0
- data/ext/apex_ext/apex_src/documentation/docsets/ApexCLI.docset/Contents/Resources/Documents/cheatset_resources/Open_Sans_Italic.woff +0 -0
- data/ext/apex_ext/apex_src/documentation/docsets/ApexCLI.docset/Contents/Resources/Documents/cheatset_resources/Open_Sans_Semibold.woff +0 -0
- data/ext/apex_ext/apex_src/documentation/docsets/ApexCLI.docset/Contents/Resources/Documents/cheatset_resources/Open_Sans_Semibold_Italic.woff +0 -0
- data/ext/apex_ext/apex_src/documentation/docsets/ApexCLI.docset/Contents/Resources/Documents/index.html +914 -0
- data/ext/apex_ext/apex_src/documentation/docsets/ApexCLI.docset/Contents/Resources/Documents/style.css +399 -0
- data/ext/apex_ext/apex_src/documentation/docsets/ApexCLI.docset/Contents/Resources/docSet.dsidx +0 -0
- data/ext/apex_ext/apex_src/documentation/docsets/ApexCLI.docset/Contents/Resources/optimizedIndex.dsidx +0 -0
- data/ext/apex_ext/apex_src/documentation/generate_app_docs.rb +772 -0
- data/ext/apex_ext/apex_src/documentation/generate_app_docs_ai.rb +678 -0
- data/ext/apex_ext/apex_src/documentation/generate_docset.rb +873 -0
- data/ext/apex_ext/apex_src/documentation/generate_single_html.rb +733 -0
- data/ext/apex_ext/apex_src/documentation/html/apex-docs.html +17073 -0
- data/ext/apex_ext/apex_src/documentation/shared_scripts.js +64 -0
- data/ext/apex_ext/apex_src/documentation/shared_styles.css +646 -0
- data/ext/apex_ext/apex_src/documentation/transform_for_app.example.md +260 -0
- data/ext/apex_ext/apex_src/examples/bracketed_spans_demo.md +119 -0
- data/ext/apex_ext/apex_src/examples/emoji_span_plugin.yml +11 -0
- data/ext/apex_ext/apex_src/examples/example.html +53 -0
- data/ext/apex_ext/apex_src/examples/example.md +85 -0
- data/ext/apex_ext/apex_src/examples/fenced_divs_demo.md +158 -0
- data/ext/apex_ext/apex_src/examples/kbd.md +8 -0
- data/ext/apex_ext/apex_src/examples/kbd_plugin.rb +250 -0
- data/ext/apex_ext/apex_src/examples/kbd_plugin.yml +9 -0
- data/ext/apex_ext/apex_src/icon/apexicon-outline-black.png +0 -0
- data/ext/apex_ext/apex_src/icon/apexicon-outline-black@2x.png +0 -0
- data/ext/apex_ext/apex_src/icon/apexicon-outline-mark.png +0 -0
- data/ext/apex_ext/apex_src/icon/apexicon-outline-mark@2x.png +0 -0
- data/ext/apex_ext/apex_src/icon/apexicon-outline-white.png +0 -0
- data/ext/apex_ext/apex_src/icon/apexicon-outline-white@2x.png +0 -0
- data/ext/apex_ext/apex_src/icon/apexicon.png +0 -0
- data/ext/apex_ext/apex_src/icon/apexicon@2x.png +0 -0
- data/ext/apex_ext/apex_src/include/apex/apex.h +247 -0
- data/ext/apex_ext/apex_src/include/apex/buffer.h +93 -0
- data/ext/apex_ext/apex_src/include/apex/module.modulemap +16 -0
- data/ext/apex_ext/apex_src/include/apex/parser.h +150 -0
- data/ext/apex_ext/apex_src/include/apex/renderer.h +39 -0
- data/ext/apex_ext/apex_src/man/apex-config.5 +374 -0
- data/ext/apex_ext/apex_src/man/apex-config.5.md +260 -0
- data/ext/apex_ext/apex_src/man/apex-plugins.7 +456 -0
- data/ext/apex_ext/apex_src/man/apex-plugins.7.md +365 -0
- data/ext/apex_ext/apex_src/man/apex.1 +828 -0
- data/ext/apex_ext/apex_src/man/apex.1.md +643 -0
- data/ext/apex_ext/apex_src/man/apex.1.new +338 -0
- data/ext/apex_ext/apex_src/objc/Apex.swift +237 -0
- data/ext/apex_ext/apex_src/objc/NSString+Apex.h +117 -0
- data/ext/apex_ext/apex_src/objc/NSString+Apex.m +332 -0
- data/ext/apex_ext/apex_src/src/_README.md +358 -0
- data/ext/apex_ext/apex_src/src/apex.c +6326 -0
- data/ext/apex_ext/apex_src/src/buffer.c +93 -0
- data/ext/apex_ext/apex_src/src/extensions/abbreviations.c +362 -0
- data/ext/apex_ext/apex_src/src/extensions/abbreviations.h +45 -0
- data/ext/apex_ext/apex_src/src/extensions/advanced_footnotes.c +184 -0
- data/ext/apex_ext/apex_src/src/extensions/advanced_footnotes.h +50 -0
- data/ext/apex_ext/apex_src/src/extensions/advanced_tables.c +1897 -0
- data/ext/apex_ext/apex_src/src/extensions/advanced_tables.h +42 -0
- data/ext/apex_ext/apex_src/src/extensions/callouts.c +215 -0
- data/ext/apex_ext/apex_src/src/extensions/callouts.h +53 -0
- data/ext/apex_ext/apex_src/src/extensions/citations.c +2042 -0
- data/ext/apex_ext/apex_src/src/extensions/citations.h +163 -0
- data/ext/apex_ext/apex_src/src/extensions/critic.c +329 -0
- data/ext/apex_ext/apex_src/src/extensions/critic.h +48 -0
- data/ext/apex_ext/apex_src/src/extensions/definition_list.c +1670 -0
- data/ext/apex_ext/apex_src/src/extensions/definition_list.h +42 -0
- data/ext/apex_ext/apex_src/src/extensions/emoji.c +710 -0
- data/ext/apex_ext/apex_src/src/extensions/emoji.h +38 -0
- data/ext/apex_ext/apex_src/src/extensions/emoji_data.h +942 -0
- data/ext/apex_ext/apex_src/src/extensions/fenced_divs.c +925 -0
- data/ext/apex_ext/apex_src/src/extensions/fenced_divs.h +43 -0
- data/ext/apex_ext/apex_src/src/extensions/github-emoji.txt +869 -0
- data/ext/apex_ext/apex_src/src/extensions/grid_tables.c +1121 -0
- data/ext/apex_ext/apex_src/src/extensions/grid_tables.h +33 -0
- data/ext/apex_ext/apex_src/src/extensions/header_ids.c +626 -0
- data/ext/apex_ext/apex_src/src/extensions/header_ids.h +60 -0
- data/ext/apex_ext/apex_src/src/extensions/highlight.c +135 -0
- data/ext/apex_ext/apex_src/src/extensions/highlight.h +16 -0
- data/ext/apex_ext/apex_src/src/extensions/html_markdown.c +408 -0
- data/ext/apex_ext/apex_src/src/extensions/html_markdown.h +42 -0
- data/ext/apex_ext/apex_src/src/extensions/ial.c +4084 -0
- data/ext/apex_ext/apex_src/src/extensions/ial.h +145 -0
- data/ext/apex_ext/apex_src/src/extensions/includes.c +1536 -0
- data/ext/apex_ext/apex_src/src/extensions/includes.h +54 -0
- data/ext/apex_ext/apex_src/src/extensions/index.c +967 -0
- data/ext/apex_ext/apex_src/src/extensions/index.h +90 -0
- data/ext/apex_ext/apex_src/src/extensions/inline_footnotes.c +205 -0
- data/ext/apex_ext/apex_src/src/extensions/inline_footnotes.h +34 -0
- data/ext/apex_ext/apex_src/src/extensions/inline_tables.c +332 -0
- data/ext/apex_ext/apex_src/src/extensions/inline_tables.h +13 -0
- data/ext/apex_ext/apex_src/src/extensions/insert.c +248 -0
- data/ext/apex_ext/apex_src/src/extensions/insert.h +18 -0
- data/ext/apex_ext/apex_src/src/extensions/math.c +279 -0
- data/ext/apex_ext/apex_src/src/extensions/math.h +32 -0
- data/ext/apex_ext/apex_src/src/extensions/metadata.c +3046 -0
- data/ext/apex_ext/apex_src/src/extensions/metadata.h +125 -0
- data/ext/apex_ext/apex_src/src/extensions/relaxed_tables.c +1297 -0
- data/ext/apex_ext/apex_src/src/extensions/relaxed_tables.h +39 -0
- data/ext/apex_ext/apex_src/src/extensions/special_markers.c +194 -0
- data/ext/apex_ext/apex_src/src/extensions/special_markers.h +29 -0
- data/ext/apex_ext/apex_src/src/extensions/sup_sub.c +405 -0
- data/ext/apex_ext/apex_src/src/extensions/sup_sub.h +16 -0
- data/ext/apex_ext/apex_src/src/extensions/syntax_highlight.c +468 -0
- data/ext/apex_ext/apex_src/src/extensions/syntax_highlight.h +44 -0
- data/ext/apex_ext/apex_src/src/extensions/table_html_postprocess.c +2679 -0
- data/ext/apex_ext/apex_src/src/extensions/table_html_postprocess.h +23 -0
- data/ext/apex_ext/apex_src/src/extensions/toc.c +255 -0
- data/ext/apex_ext/apex_src/src/extensions/toc.h +34 -0
- data/ext/apex_ext/apex_src/src/extensions/wiki_links.c +624 -0
- data/ext/apex_ext/apex_src/src/extensions/wiki_links.h +58 -0
- data/ext/apex_ext/apex_src/src/html_renderer.c +2762 -0
- data/ext/apex_ext/apex_src/src/html_renderer.h +126 -0
- data/ext/apex_ext/apex_src/src/parser.c +227 -0
- data/ext/apex_ext/apex_src/src/plugins.c +895 -0
- data/ext/apex_ext/apex_src/src/plugins.h +39 -0
- data/ext/apex_ext/apex_src/src/plugins_env.c +187 -0
- data/ext/apex_ext/apex_src/src/plugins_remote.c +263 -0
- data/ext/apex_ext/apex_src/src/pretty_html.c +358 -0
- data/ext/apex_ext/apex_src/src/renderer.c +241 -0
- data/ext/apex_ext/apex_src/src/utf8.c +56 -0
- data/ext/apex_ext/apex_src/test-linux-build.sh +20 -0
- data/ext/apex_ext/apex_src/test.html +103 -0
- data/ext/apex_ext/apex_src/test_coverage.sh +121 -0
- data/ext/apex_ext/apex_src/test_ial_fenced.md +6 -0
- data/ext/apex_ext/apex_src/test_math_norm.py +79 -0
- data/ext/apex_ext/apex_src/test_pandoc_output.html +48 -0
- data/ext/apex_ext/apex_src/test_spm.sh +107 -0
- data/ext/apex_ext/apex_src/tests/ApexSPMTest/main.swift +50 -0
- data/ext/apex_ext/apex_src/tests/BENCHMARK_RESULTS.md +229 -0
- data/ext/apex_ext/apex_src/tests/CMakeLists.txt +24 -0
- data/ext/apex_ext/apex_src/tests/README.md +146 -0
- data/ext/apex_ext/apex_src/tests/benchmark.sh +113 -0
- data/ext/apex_ext/apex_src/tests/benchmark_comparison.sh +166 -0
- data/ext/apex_ext/apex_src/tests/compare_header_ids.sh +31 -0
- data/ext/apex_ext/apex_src/tests/fixtures/basic/headers.md +25 -0
- data/ext/apex_ext/apex_src/tests/fixtures/basic/list-interruption.md +24 -0
- data/ext/apex_ext/apex_src/tests/fixtures/basic/misc_markup.md +33 -0
- data/ext/apex_ext/apex_src/tests/fixtures/basic/test_basic.md +26 -0
- data/ext/apex_ext/apex_src/tests/fixtures/code/code-blocks.md +260 -0
- data/ext/apex_ext/apex_src/tests/fixtures/combine_summary/SUMMARY.md +6 -0
- data/ext/apex_ext/apex_src/tests/fixtures/combine_summary/chapter1.md +7 -0
- data/ext/apex_ext/apex_src/tests/fixtures/combine_summary/index.txt +9 -0
- data/ext/apex_ext/apex_src/tests/fixtures/combine_summary/intro.md +5 -0
- data/ext/apex_ext/apex_src/tests/fixtures/combine_summary/section1_1.md +5 -0
- data/ext/apex_ext/apex_src/tests/fixtures/comprehensive_test.md +620 -0
- data/ext/apex_ext/apex_src/tests/fixtures/debug_ref_image_ial.md +3 -0
- data/ext/apex_ext/apex_src/tests/fixtures/demos/ial.md +11 -0
- data/ext/apex_ext/apex_src/tests/fixtures/demos/ial_demo.md +177 -0
- data/ext/apex_ext/apex_src/tests/fixtures/extensions/emoji-autocorrect.md +94 -0
- data/ext/apex_ext/apex_src/tests/fixtures/extensions/emoji_test.md +3 -0
- data/ext/apex_ext/apex_src/tests/fixtures/extensions/kbd_test.md +3 -0
- data/ext/apex_ext/apex_src/tests/fixtures/ial/bracketed_spans_test.md +74 -0
- data/ext/apex_ext/apex_src/tests/fixtures/images/image_and_encoding_test.md +27 -0
- data/ext/apex_ext/apex_src/tests/fixtures/images/multimarkdown_image_attributes_test.md +60 -0
- data/ext/apex_ext/apex_src/tests/fixtures/images/pandoc_ial_image_test.md +27 -0
- data/ext/apex_ext/apex_src/tests/fixtures/images/width_height_conversion_test.md +94 -0
- data/ext/apex_ext/apex_src/tests/fixtures/img-in-div.md +16 -0
- data/ext/apex_ext/apex_src/tests/fixtures/includes/code.py +4 -0
- data/ext/apex_ext/apex_src/tests/fixtures/includes/data.csv +5 -0
- data/ext/apex_ext/apex_src/tests/fixtures/includes/data.tsv +5 -0
- data/ext/apex_ext/apex_src/tests/fixtures/includes/image.png +2 -0
- data/ext/apex_ext/apex_src/tests/fixtures/includes/metadata_options.yml +11 -0
- data/ext/apex_ext/apex_src/tests/fixtures/includes/nested.md +8 -0
- data/ext/apex_ext/apex_src/tests/fixtures/includes/raw.html +4 -0
- data/ext/apex_ext/apex_src/tests/fixtures/includes/simple.md +7 -0
- data/ext/apex_ext/apex_src/tests/fixtures/includes/test_image.png +0 -0
- data/ext/apex_ext/apex_src/tests/fixtures/large_doc.md +1094 -0
- data/ext/apex_ext/apex_src/tests/fixtures/metadata_options.yml +11 -0
- data/ext/apex_ext/apex_src/tests/fixtures/output/gfm_header_id_test.md +96 -0
- data/ext/apex_ext/apex_src/tests/fixtures/output/test_citations.md +43 -0
- data/ext/apex_ext/apex_src/tests/fixtures/output/test_def_list_links.md +12 -0
- data/ext/apex_ext/apex_src/tests/fixtures/output/test_index_mmark.md +53 -0
- data/ext/apex_ext/apex_src/tests/fixtures/output/test_index_textindex.md +37 -0
- data/ext/apex_ext/apex_src/tests/fixtures/tables/advanced_tables_test.md +93 -0
- data/ext/apex_ext/apex_src/tests/fixtures/tables/inline_tables_test.md +38 -0
- data/ext/apex_ext/apex_src/tests/fixtures/tables/relaxed-table.md +12 -0
- data/ext/apex_ext/apex_src/tests/fixtures/tables/table_cr_line_endings.md +15 -0
- data/ext/apex_ext/apex_src/tests/fixtures/tables/table_no_trailing_newline.md +15 -0
- data/ext/apex_ext/apex_src/tests/generate_gfm_ids.sh +105 -0
- data/ext/apex_ext/apex_src/tests/generate_ial_demo.sh +143 -0
- data/ext/apex_ext/apex_src/tests/gfm_id_comparison_summary.md +96 -0
- data/ext/apex_ext/apex_src/tests/gh_api_test.md +6 -0
- data/ext/apex_ext/apex_src/tests/ial_demo.html +186 -0
- data/ext/apex_ext/apex_src/tests/include_code.py +19 -0
- data/ext/apex_ext/apex_src/tests/include_snippet.md +15 -0
- data/ext/apex_ext/apex_src/tests/multi_file_cli_test.sh +64 -0
- data/ext/apex_ext/apex_src/tests/sample_data.csv +7 -0
- data/ext/apex_ext/apex_src/tests/table_escaped_ltlt.md +4 -0
- data/ext/apex_ext/apex_src/tests/test_basic.c +74 -0
- data/ext/apex_ext/apex_src/tests/test_extensions.c +2116 -0
- data/ext/apex_ext/apex_src/tests/test_helpers.c +183 -0
- data/ext/apex_ext/apex_src/tests/test_helpers.h +91 -0
- data/ext/apex_ext/apex_src/tests/test_ial.c +282 -0
- data/ext/apex_ext/apex_src/tests/test_links.c +418 -0
- data/ext/apex_ext/apex_src/tests/test_marked_integration.c +265 -0
- data/ext/apex_ext/apex_src/tests/test_metadata.c +908 -0
- data/ext/apex_ext/apex_src/tests/test_output.c +1118 -0
- data/ext/apex_ext/apex_src/tests/test_plugins.c +219 -0
- data/ext/apex_ext/apex_src/tests/test_refs.bib +31 -0
- data/ext/apex_ext/apex_src/tests/test_runner.c +244 -0
- data/ext/apex_ext/apex_src/tests/test_syntax_highlight.c +198 -0
- data/ext/apex_ext/apex_src/tests/test_tables.c +862 -0
- data/ext/apex_ext/apex_src/tests/update_benchmarks.sh +9 -0
- data/ext/apex_ext/apex_src/tests/yaml_test.md +13 -0
- data/ext/apex_ext/apex_src/tests.rb +39 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/CMakeLists.txt +48 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/COPYING +170 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/CheckFileOffsetBits.c +14 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/CheckFileOffsetBits.cmake +43 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/FindAsan.cmake +74 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/Makefile.nmake +38 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/README.md +206 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/api_test/CMakeLists.txt +30 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/api_test/cplusplus.cpp +15 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/api_test/cplusplus.h +16 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/api_test/harness.c +111 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/api_test/harness.h +35 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/api_test/main.c +1169 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/appveyor.yml +21 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/block-bq-flat.md +16 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/block-bq-nested.md +13 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/block-code.md +11 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/block-fences.md +14 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/block-heading.md +9 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/block-hr.md +10 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/block-html.md +32 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/block-lheading.md +8 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/block-list-flat.md +67 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/block-list-nested.md +36 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/block-ref-flat.md +15 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/block-ref-nested.md +17 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/inline-autolink.md +14 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/inline-backticks.md +3 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/inline-em-flat.md +5 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/inline-em-nested.md +5 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/inline-em-worst.md +5 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/inline-entity.md +11 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/inline-escape.md +15 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/inline-html.md +44 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/inline-links-flat.md +23 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/inline-links-nested.md +13 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/inline-newlines.md +24 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/lorem1.md +13 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/rawtabs.md +18 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/statistics.py +595 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/stats.py +19 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/benchmarks.md +33 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/changelog.txt +1245 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/data/CaseFolding.txt +1495 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/extensions/CMakeLists.txt +119 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/extensions/autolink.c +508 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/extensions/autolink.h +8 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/extensions/cmark-gfm-core-extensions.h +54 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/extensions/core-extensions.c +27 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/extensions/ext_scanners.c +879 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/extensions/ext_scanners.h +24 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/extensions/ext_scanners.re +92 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/extensions/strikethrough.c +167 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/extensions/strikethrough.h +9 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/extensions/table.c +917 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/extensions/table.h +12 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/extensions/tagfilter.c +60 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/extensions/tagfilter.h +8 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/extensions/tasklist.c +156 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/extensions/tasklist.h +8 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/fuzz/CMakeLists.txt +22 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/fuzz/README.md +12 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/fuzz/fuzz_quadratic.c +91 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/fuzz/fuzz_quadratic_brackets.c +110 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/fuzz/fuzzloop.sh +28 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/man/CMakeLists.txt +10 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/man/make_man_page.py +133 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/man/man1/cmark-gfm.1 +78 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/man/man3/cmark-gfm.3 +1041 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/nmake.bat +1 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/CMakeLists.txt +230 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/arena.c +104 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/blocks.c +1622 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/buffer.c +278 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/buffer.h +116 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/case_fold_switch.inc +4327 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/chunk.h +135 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/cmark-gfm-extension_api.h +737 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/cmark-gfm.h +833 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/cmark-gfm_version.h.in +7 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/cmark.c +55 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/cmark_ctype.c +44 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/cmark_ctype.h +33 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/commonmark.c +514 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/config.h.in +76 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/entities.inc +2138 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/footnotes.c +63 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/footnotes.h +27 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/houdini.h +57 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/houdini_href_e.c +100 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/houdini_html_e.c +66 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/houdini_html_u.c +149 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/html.c +502 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/html.h +27 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/inlines.c +1788 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/inlines.h +29 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/iterator.c +159 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/iterator.h +26 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/latex.c +468 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/libcmark-gfm.pc.in +10 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/linked_list.c +37 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/main.c +328 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/man.c +274 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/map.c +129 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/map.h +44 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/node.c +1045 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/node.h +167 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/parser.h +59 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/plaintext.c +218 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/plugin.c +36 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/plugin.h +34 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/references.c +43 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/references.h +26 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/registry.c +63 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/registry.h +24 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/render.c +213 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/render.h +62 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/scanners.c +14056 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/scanners.h +70 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/scanners.re +365 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/syntax_extension.c +149 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/syntax_extension.h +34 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/utf8.c +317 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/utf8.h +35 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/xml.c +182 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/suppressions +10 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/test/CMakeLists.txt +114 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/test/afl_test_cases/test.md +49 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/test/cmark-fuzz.c +58 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/test/cmark.py +105 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/test/entity_tests.py +67 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/test/extensions-full-info-string.txt +0 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/test/extensions-table-prefer-style-attributes.txt +38 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/test/extensions.txt +920 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/test/fuzzing_dictionary +67 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/test/normalize.py +194 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/test/pathological_tests.py +160 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/test/regression.txt +375 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/test/roundtrip_tests.py +50 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/test/run-cmark-fuzz +4 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/test/smart_punct.txt +177 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/test/spec.txt +10212 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/test/spec_tests.py +152 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/toolchain-mingw32.cmake +17 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/tools/Dockerfile +41 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/tools/appveyor-build.bat +13 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/tools/make_entities_inc.py +32 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/tools/mkcasefold.pl +22 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/tools/xml2md.xsl +319 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/tools/xml2md_gfm.xsl +80 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/why-cmark-and-not-x.md +104 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/wrappers/wrapper.js +6 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/wrappers/wrapper.py +37 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/wrappers/wrapper.rb +15 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/wrappers/wrapper.rkt +208 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/wrappers/wrapper_ext.py +109 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/CMakeLists.txt +160 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/Changes +372 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/License +20 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/Makefile.am +51 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/ReadMe.md +46 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/announcement.msg +89 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/bootstrap +3 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/cmake/config.h.in +4 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/configure.ac +73 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/doc/doxygen.cfg +222 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/docker/README.mkd +17 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/docker/alpine-3.7 +26 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/docker/fedora-25 +26 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/docker/ubuntu-14.04 +29 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/docker/ubuntu-16.04 +24 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/examples/anchors.yaml +10 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/examples/array.yaml +2 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/examples/global-tag.yaml +14 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/examples/json.yaml +1 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/examples/mapping.yaml +2 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/examples/numbers.yaml +1 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/examples/strings.yaml +7 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/examples/tags.yaml +7 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/examples/yaml-version.yaml +3 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/include/Makefile.am +17 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/include/yaml.h +1999 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/pkg/ReadMe.md +77 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/pkg/docker/Dockerfile +32 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/pkg/docker/output/ReadMe +1 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/pkg/docker/scripts/libyaml-dist.sh +23 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/regression-inputs/clusterfuzz-testcase-minimized-5607885063061504.yml +1 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/src/Makefile.am +4 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/src/api.c +1393 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/src/dumper.c +394 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/src/emitter.c +2358 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/src/loader.c +544 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/src/parser.c +1416 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/src/reader.c +469 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/src/scanner.c +3598 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/src/writer.c +141 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/src/yaml_private.h +684 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/tests/CMakeLists.txt +27 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/tests/Makefile.am +9 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/tests/ReadMe.md +63 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/tests/example-deconstructor-alt.c +800 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/tests/example-deconstructor.c +1127 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/tests/example-reformatter-alt.c +217 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/tests/example-reformatter.c +202 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/tests/run-all-tests.sh +29 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/tests/run-dumper.c +314 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/tests/run-emitter-test-suite.c +290 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/tests/run-emitter.c +327 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/tests/run-loader.c +63 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/tests/run-parser-test-suite.c +196 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/tests/run-parser.c +88 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/tests/run-scanner.c +63 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/tests/test-reader.c +354 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/tests/test-version.c +29 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/yaml-0.1.pc.in +10 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/yamlConfig.cmake.in +16 -0
- data/ext/apex_ext/extconf.rb +103 -0
- data/lib/apex/configurable.rb +46 -0
- data/lib/apex/document.rb +66 -0
- data/lib/apex/version.rb +15 -0
- data/lib/apex.rb +28 -0
- metadata +544 -0
|
@@ -0,0 +1,942 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Complete GitHub Emoji Database
|
|
3
|
+
* Generated from github-emoji.txt
|
|
4
|
+
* Total: 861 emoji mappings (847 unicode, 14 image-based)
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
#ifndef APEX_EMOJI_DATA_H
|
|
8
|
+
#define APEX_EMOJI_DATA_H
|
|
9
|
+
|
|
10
|
+
typedef struct {
|
|
11
|
+
const char *name;
|
|
12
|
+
const char *unicode; /* NULL if image-based */
|
|
13
|
+
const char *image_url; /* NULL if unicode-based */
|
|
14
|
+
} emoji_entry;
|
|
15
|
+
|
|
16
|
+
/* Complete emoji map - alphabetically sorted */
|
|
17
|
+
static const emoji_entry complete_emoji_map[] = {
|
|
18
|
+
/* + */
|
|
19
|
+
{"+1", "👍", NULL},
|
|
20
|
+
|
|
21
|
+
/* - */
|
|
22
|
+
{"-1", "👎", NULL},
|
|
23
|
+
|
|
24
|
+
/* 1 */
|
|
25
|
+
{"100", "💯", NULL},
|
|
26
|
+
{"1234", "🔢", NULL},
|
|
27
|
+
|
|
28
|
+
/* 8 */
|
|
29
|
+
{"8ball", "🎱", NULL},
|
|
30
|
+
|
|
31
|
+
/* A */
|
|
32
|
+
{"a", "🅰️", NULL},
|
|
33
|
+
{"ab", "🆎", NULL},
|
|
34
|
+
{"abc", "🔤", NULL},
|
|
35
|
+
{"abcd", "🔡", NULL},
|
|
36
|
+
{"accept", "🉑", NULL},
|
|
37
|
+
{"aerial_tramway", "🚡", NULL},
|
|
38
|
+
{"airplane", "✈️", NULL},
|
|
39
|
+
{"alarm_clock", "⏰", NULL},
|
|
40
|
+
{"alien", "👽", NULL},
|
|
41
|
+
{"ambulance", "🚑", NULL},
|
|
42
|
+
{"anchor", "⚓", NULL},
|
|
43
|
+
{"angel", "👼", NULL},
|
|
44
|
+
{"anger", "💢", NULL},
|
|
45
|
+
{"angry", "😠", NULL},
|
|
46
|
+
{"anguished", "😧", NULL},
|
|
47
|
+
{"ant", "🐜", NULL},
|
|
48
|
+
{"apple", "🍎", NULL},
|
|
49
|
+
{"aquarius", "♒", NULL},
|
|
50
|
+
{"aries", "♈", NULL},
|
|
51
|
+
{"arrow_backward", "◀️", NULL},
|
|
52
|
+
{"arrow_double_down", "⏬", NULL},
|
|
53
|
+
{"arrow_double_up", "⏫", NULL},
|
|
54
|
+
{"arrow_down", "⬇️", NULL},
|
|
55
|
+
{"arrow_down_small", "🔽", NULL},
|
|
56
|
+
{"arrow_forward", "▶️", NULL},
|
|
57
|
+
{"arrow_heading_down", "⤵️", NULL},
|
|
58
|
+
{"arrow_heading_up", "⤴️", NULL},
|
|
59
|
+
{"arrow_left", "⬅️", NULL},
|
|
60
|
+
{"arrow_lower_left", "↙️", NULL},
|
|
61
|
+
{"arrow_lower_right", "↘️", NULL},
|
|
62
|
+
{"arrow_right", "➡️", NULL},
|
|
63
|
+
{"arrow_right_hook", "↪️", NULL},
|
|
64
|
+
{"arrow_up", "⬆️", NULL},
|
|
65
|
+
{"arrow_up_down", "↕️", NULL},
|
|
66
|
+
{"arrow_up_small", "🔼", NULL},
|
|
67
|
+
{"arrow_upper_left", "↖️", NULL},
|
|
68
|
+
{"arrow_upper_right", "↗️", NULL},
|
|
69
|
+
{"arrows_clockwise", "🔃", NULL},
|
|
70
|
+
{"arrows_counterclockwise", "🔄", NULL},
|
|
71
|
+
{"art", "🎨", NULL},
|
|
72
|
+
{"articulated_lorry", "🚛", NULL},
|
|
73
|
+
{"astonished", "😲", NULL},
|
|
74
|
+
{"atm", "🏧", NULL},
|
|
75
|
+
|
|
76
|
+
/* B */
|
|
77
|
+
{"b", "🅱️", NULL},
|
|
78
|
+
{"baby", "👶", NULL},
|
|
79
|
+
{"baby_bottle", "🍼", NULL},
|
|
80
|
+
{"baby_chick", "🐤", NULL},
|
|
81
|
+
{"baby_symbol", "🚼", NULL},
|
|
82
|
+
{"baggage_claim", "🛄", NULL},
|
|
83
|
+
{"balloon", "🎈", NULL},
|
|
84
|
+
{"ballot_box_with_check", "☑️", NULL},
|
|
85
|
+
{"bamboo", "🎍", NULL},
|
|
86
|
+
{"banana", "🍌", NULL},
|
|
87
|
+
{"bangbang", "‼️", NULL},
|
|
88
|
+
{"bank", "🏦", NULL},
|
|
89
|
+
{"bar_chart", "📊", NULL},
|
|
90
|
+
{"barber", "💈", NULL},
|
|
91
|
+
{"baseball", "⚾", NULL},
|
|
92
|
+
{"basketball", "🏀", NULL},
|
|
93
|
+
{"bath", "🛀", NULL},
|
|
94
|
+
{"bathtub", "🛁", NULL},
|
|
95
|
+
{"battery", "🔋", NULL},
|
|
96
|
+
{"bear", "🐻", NULL},
|
|
97
|
+
{"beer", "🍺", NULL},
|
|
98
|
+
{"beers", "🍻", NULL},
|
|
99
|
+
{"beetle", "🪲", NULL},
|
|
100
|
+
{"beginner", "🔰", NULL},
|
|
101
|
+
{"bell", "🔔", NULL},
|
|
102
|
+
{"bento", "🍱", NULL},
|
|
103
|
+
{"bicyclist", "🚴", NULL},
|
|
104
|
+
{"bike", "🚲", NULL},
|
|
105
|
+
{"bikini", "👙", NULL},
|
|
106
|
+
{"bird", "🐦", NULL},
|
|
107
|
+
{"birthday", "🎂", NULL},
|
|
108
|
+
{"black_circle", "⚫", NULL},
|
|
109
|
+
{"black_joker", "🃏", NULL},
|
|
110
|
+
{"black_nib", "✒️", NULL},
|
|
111
|
+
{"black_square_button", "🔲", NULL},
|
|
112
|
+
{"blossom", "🌼", NULL},
|
|
113
|
+
{"blowfish", "🐡", NULL},
|
|
114
|
+
{"blue_book", "📘", NULL},
|
|
115
|
+
{"blue_car", "🚙", NULL},
|
|
116
|
+
{"blue_heart", "💙", NULL},
|
|
117
|
+
{"blush", "😊", NULL},
|
|
118
|
+
{"boar", "🐗", NULL},
|
|
119
|
+
{"boat", "⛵", NULL},
|
|
120
|
+
{"bomb", "💣", NULL},
|
|
121
|
+
{"book", "📖", NULL},
|
|
122
|
+
{"bookmark", "🔖", NULL},
|
|
123
|
+
{"bookmark_tabs", "📑", NULL},
|
|
124
|
+
{"books", "📚", NULL},
|
|
125
|
+
{"boom", "💥", NULL},
|
|
126
|
+
{"boot", "👢", NULL},
|
|
127
|
+
{"bouquet", "💐", NULL},
|
|
128
|
+
{"bow", "🙇", NULL},
|
|
129
|
+
{"bowling", "🎳", NULL},
|
|
130
|
+
{"bowtie", NULL, "https://github.githubassets.com/images/icons/emoji/bowtie.png"},
|
|
131
|
+
{"boy", "👦", NULL},
|
|
132
|
+
{"bread", "🍞", NULL},
|
|
133
|
+
{"bride_with_veil", "👰♀️", NULL},
|
|
134
|
+
{"bridge_at_night", "🌉", NULL},
|
|
135
|
+
{"briefcase", "💼", NULL},
|
|
136
|
+
{"broken_heart", "💔", NULL},
|
|
137
|
+
{"bug", "🐛", NULL},
|
|
138
|
+
{"bulb", "💡", NULL},
|
|
139
|
+
{"bullettrain_front", "🚅", NULL},
|
|
140
|
+
{"bullettrain_side", "🚄", NULL},
|
|
141
|
+
{"bus", "🚌", NULL},
|
|
142
|
+
{"busstop", "🚏", NULL},
|
|
143
|
+
{"bust_in_silhouette", "👤", NULL},
|
|
144
|
+
{"busts_in_silhouette", "👥", NULL},
|
|
145
|
+
|
|
146
|
+
/* C */
|
|
147
|
+
{"cactus", "🌵", NULL},
|
|
148
|
+
{"cake", "🍰", NULL},
|
|
149
|
+
{"calendar", "📆", NULL},
|
|
150
|
+
{"calling", "📲", NULL},
|
|
151
|
+
{"camel", "🐫", NULL},
|
|
152
|
+
{"camera", "📷", NULL},
|
|
153
|
+
{"cancer", "♋", NULL},
|
|
154
|
+
{"candy", "🍬", NULL},
|
|
155
|
+
{"capital_abcd", "🔠", NULL},
|
|
156
|
+
{"capricorn", "♑", NULL},
|
|
157
|
+
{"car", "🚗", NULL},
|
|
158
|
+
{"card_index", "📇", NULL},
|
|
159
|
+
{"carousel_horse", "🎠", NULL},
|
|
160
|
+
{"cat", "🐱", NULL},
|
|
161
|
+
{"cat2", "🐈", NULL},
|
|
162
|
+
{"cd", "💿", NULL},
|
|
163
|
+
{"chart", "💹", NULL},
|
|
164
|
+
{"chart_with_downwards_trend", "📉", NULL},
|
|
165
|
+
{"chart_with_upwards_trend", "📈", NULL},
|
|
166
|
+
{"checkered_flag", "🏁", NULL},
|
|
167
|
+
{"cherries", "🍒", NULL},
|
|
168
|
+
{"cherry_blossom", "🌸", NULL},
|
|
169
|
+
{"chestnut", "🌰", NULL},
|
|
170
|
+
{"chicken", "🐔", NULL},
|
|
171
|
+
{"children_crossing", "🚸", NULL},
|
|
172
|
+
{"chocolate_bar", "🍫", NULL},
|
|
173
|
+
{"christmas_tree", "🎄", NULL},
|
|
174
|
+
{"church", "⛪", NULL},
|
|
175
|
+
{"cinema", "🎦", NULL},
|
|
176
|
+
{"circus_tent", "🎪", NULL},
|
|
177
|
+
{"city_sunrise", "🌇", NULL},
|
|
178
|
+
{"city_sunset", "🌆", NULL},
|
|
179
|
+
{"cl", "🆑", NULL},
|
|
180
|
+
{"clap", "👏", NULL},
|
|
181
|
+
{"clapper", "🎬", NULL},
|
|
182
|
+
{"clipboard", "📋", NULL},
|
|
183
|
+
{"clock1", "🕐", NULL},
|
|
184
|
+
{"clock10", "🕙", NULL},
|
|
185
|
+
{"clock1030", "🕥", NULL},
|
|
186
|
+
{"clock11", "🕚", NULL},
|
|
187
|
+
{"clock1130", "🕦", NULL},
|
|
188
|
+
{"clock12", "🕛", NULL},
|
|
189
|
+
{"clock1230", "🕧", NULL},
|
|
190
|
+
{"clock130", "🕜", NULL},
|
|
191
|
+
{"clock2", "🕑", NULL},
|
|
192
|
+
{"clock230", "🕝", NULL},
|
|
193
|
+
{"clock3", "🕒", NULL},
|
|
194
|
+
{"clock330", "🕞", NULL},
|
|
195
|
+
{"clock4", "🕓", NULL},
|
|
196
|
+
{"clock430", "🕟", NULL},
|
|
197
|
+
{"clock5", "🕔", NULL},
|
|
198
|
+
{"clock530", "🕠", NULL},
|
|
199
|
+
{"clock6", "🕕", NULL},
|
|
200
|
+
{"clock630", "🕡", NULL},
|
|
201
|
+
{"clock7", "🕖", NULL},
|
|
202
|
+
{"clock730", "🕢", NULL},
|
|
203
|
+
{"clock8", "🕗", NULL},
|
|
204
|
+
{"clock830", "🕣", NULL},
|
|
205
|
+
{"clock9", "🕘", NULL},
|
|
206
|
+
{"clock930", "🕤", NULL},
|
|
207
|
+
{"closed_book", "📕", NULL},
|
|
208
|
+
{"closed_lock_with_key", "🔐", NULL},
|
|
209
|
+
{"closed_umbrella", "🌂", NULL},
|
|
210
|
+
{"cloud", "☁️", NULL},
|
|
211
|
+
{"clubs", "♣️", NULL},
|
|
212
|
+
{"cn", "🇨🇳", NULL},
|
|
213
|
+
{"cocktail", "🍸", NULL},
|
|
214
|
+
{"coffee", "☕", NULL},
|
|
215
|
+
{"cold_sweat", "😰", NULL},
|
|
216
|
+
{"collision", "💥", NULL},
|
|
217
|
+
{"computer", "💻", NULL},
|
|
218
|
+
{"confetti_ball", "🎊", NULL},
|
|
219
|
+
{"confounded", "😖", NULL},
|
|
220
|
+
{"confused", "😕", NULL},
|
|
221
|
+
{"congratulations", "㊗️", NULL},
|
|
222
|
+
{"construction", "🚧", NULL},
|
|
223
|
+
{"construction_worker", "👷", NULL},
|
|
224
|
+
{"convenience_store", "🏪", NULL},
|
|
225
|
+
{"cookie", "🍪", NULL},
|
|
226
|
+
{"cool", "🆒", NULL},
|
|
227
|
+
{"cop", "👮", NULL},
|
|
228
|
+
{"copyright", "©️", NULL},
|
|
229
|
+
{"corn", "🌽", NULL},
|
|
230
|
+
{"couple", "👫", NULL},
|
|
231
|
+
{"couple_with_heart", "💑", NULL},
|
|
232
|
+
{"couplekiss", "💏", NULL},
|
|
233
|
+
{"cow", "🐮", NULL},
|
|
234
|
+
{"cow2", "🐄", NULL},
|
|
235
|
+
{"credit_card", "💳", NULL},
|
|
236
|
+
{"crocodile", "🐊", NULL},
|
|
237
|
+
{"crossed_flags", "🎌", NULL},
|
|
238
|
+
{"crown", "👑", NULL},
|
|
239
|
+
{"cry", "😢", NULL},
|
|
240
|
+
{"crying_cat_face", "😿", NULL},
|
|
241
|
+
{"crystal_ball", "🔮", NULL},
|
|
242
|
+
{"cupid", "💘", NULL},
|
|
243
|
+
{"curly_loop", "➰", NULL},
|
|
244
|
+
{"currency_exchange", "💱", NULL},
|
|
245
|
+
{"curry", "🍛", NULL},
|
|
246
|
+
{"custard", "🍮", NULL},
|
|
247
|
+
{"customs", "🛃", NULL},
|
|
248
|
+
{"cyclone", "🌀", NULL},
|
|
249
|
+
|
|
250
|
+
/* D */
|
|
251
|
+
{"dancer", "💃", NULL},
|
|
252
|
+
{"dancers", "👯", NULL},
|
|
253
|
+
{"dango", "🍡", NULL},
|
|
254
|
+
{"dart", "🎯", NULL},
|
|
255
|
+
{"dash", "💨", NULL},
|
|
256
|
+
{"date", "📅", NULL},
|
|
257
|
+
{"de", "🇩🇪", NULL},
|
|
258
|
+
{"deciduous_tree", "🌳", NULL},
|
|
259
|
+
{"department_store", "🏬", NULL},
|
|
260
|
+
{"diamond_shape_with_a_dot_inside", "💠", NULL},
|
|
261
|
+
{"diamonds", "♦️", NULL},
|
|
262
|
+
{"disappointed", "😞", NULL},
|
|
263
|
+
{"disappointed_relieved", "😥", NULL},
|
|
264
|
+
{"dizzy", "💫", NULL},
|
|
265
|
+
{"dizzy_face", "😵", NULL},
|
|
266
|
+
{"do_not_litter", "🚯", NULL},
|
|
267
|
+
{"dog", "🐶", NULL},
|
|
268
|
+
{"dog2", "🐕", NULL},
|
|
269
|
+
{"dollar", "💵", NULL},
|
|
270
|
+
{"dolls", "🎎", NULL},
|
|
271
|
+
{"dolphin", "🐬", NULL},
|
|
272
|
+
{"door", "🚪", NULL},
|
|
273
|
+
{"doughnut", "🍩", NULL},
|
|
274
|
+
{"dragon", "🐉", NULL},
|
|
275
|
+
{"dragon_face", "🐲", NULL},
|
|
276
|
+
{"dress", "👗", NULL},
|
|
277
|
+
{"dromedary_camel", "🐪", NULL},
|
|
278
|
+
{"droplet", "💧", NULL},
|
|
279
|
+
{"dvd", "📀", NULL},
|
|
280
|
+
|
|
281
|
+
/* E */
|
|
282
|
+
{"e-mail", "📧", NULL},
|
|
283
|
+
{"ear", "👂", NULL},
|
|
284
|
+
{"ear_of_rice", "🌾", NULL},
|
|
285
|
+
{"earth_africa", "🌍", NULL},
|
|
286
|
+
{"earth_americas", "🌎", NULL},
|
|
287
|
+
{"earth_asia", "🌏", NULL},
|
|
288
|
+
{"egg", "🥚", NULL},
|
|
289
|
+
{"eggplant", "🍆", NULL},
|
|
290
|
+
{"eight", "8️⃣", NULL},
|
|
291
|
+
{"eight_pointed_black_star", "✴️", NULL},
|
|
292
|
+
{"eight_spoked_asterisk", "✳️", NULL},
|
|
293
|
+
{"electric_plug", "🔌", NULL},
|
|
294
|
+
{"elephant", "🐘", NULL},
|
|
295
|
+
{"email", "📧", NULL},
|
|
296
|
+
{"end", "🔚", NULL},
|
|
297
|
+
{"envelope", "✉️", NULL},
|
|
298
|
+
{"es", "🇪🇸", NULL},
|
|
299
|
+
{"euro", "💶", NULL},
|
|
300
|
+
{"european_castle", "🏰", NULL},
|
|
301
|
+
{"european_post_office", "🏤", NULL},
|
|
302
|
+
{"evergreen_tree", "🌲", NULL},
|
|
303
|
+
{"exclamation", "❗", NULL},
|
|
304
|
+
{"expressionless", "😑", NULL},
|
|
305
|
+
{"eyeglasses", "👓", NULL},
|
|
306
|
+
{"eyes", "👀", NULL},
|
|
307
|
+
|
|
308
|
+
/* F */
|
|
309
|
+
{"facepunch", "👊", NULL},
|
|
310
|
+
{"factory", "🏭", NULL},
|
|
311
|
+
{"fallen_leaf", "🍂", NULL},
|
|
312
|
+
{"family", "👪", NULL},
|
|
313
|
+
{"fast_forward", "⏩", NULL},
|
|
314
|
+
{"fax", "📠", NULL},
|
|
315
|
+
{"fearful", "😨", NULL},
|
|
316
|
+
{"feelsgood", NULL, "https://github.githubassets.com/images/icons/emoji/feelsgood.png"},
|
|
317
|
+
{"feet", "🐾", NULL},
|
|
318
|
+
{"ferris_wheel", "🎡", NULL},
|
|
319
|
+
{"file_folder", "📁", NULL},
|
|
320
|
+
{"finnadie", NULL, "https://github.githubassets.com/images/icons/emoji/finnadie.png"},
|
|
321
|
+
{"fire", "🔥", NULL},
|
|
322
|
+
{"fire_engine", "🚒", NULL},
|
|
323
|
+
{"fireworks", "🎆", NULL},
|
|
324
|
+
{"first_quarter_moon", "🌓", NULL},
|
|
325
|
+
{"first_quarter_moon_with_face", "🌛", NULL},
|
|
326
|
+
{"fish", "🐟", NULL},
|
|
327
|
+
{"fish_cake", "🍥", NULL},
|
|
328
|
+
{"fishing_pole_and_fish", "🎣", NULL},
|
|
329
|
+
{"fist", "✊", NULL},
|
|
330
|
+
{"five", "5️⃣", NULL},
|
|
331
|
+
{"flags", "🎏", NULL},
|
|
332
|
+
{"flashlight", "🔦", NULL},
|
|
333
|
+
{"floppy_disk", "💾", NULL},
|
|
334
|
+
{"flower_playing_cards", "🎴", NULL},
|
|
335
|
+
{"flushed", "😳", NULL},
|
|
336
|
+
{"foggy", "🌁", NULL},
|
|
337
|
+
{"football", "🏈", NULL},
|
|
338
|
+
{"fork_and_knife", "🍴", NULL},
|
|
339
|
+
{"fountain", "⛲", NULL},
|
|
340
|
+
{"four", "4️⃣", NULL},
|
|
341
|
+
{"four_leaf_clover", "🍀", NULL},
|
|
342
|
+
{"fr", "🇫🇷", NULL},
|
|
343
|
+
{"free", "🆓", NULL},
|
|
344
|
+
{"fried_shrimp", "🍤", NULL},
|
|
345
|
+
{"fries", "🍟", NULL},
|
|
346
|
+
{"frog", "🐸", NULL},
|
|
347
|
+
{"frowning", "😦", NULL},
|
|
348
|
+
{"fu", "🖕", NULL},
|
|
349
|
+
{"fuelpump", "⛽", NULL},
|
|
350
|
+
{"full_moon", "🌕", NULL},
|
|
351
|
+
{"full_moon_with_face", "🌝", NULL},
|
|
352
|
+
|
|
353
|
+
/* G */
|
|
354
|
+
{"game_die", "🎲", NULL},
|
|
355
|
+
{"gb", "🇬🇧", NULL},
|
|
356
|
+
{"gem", "💎", NULL},
|
|
357
|
+
{"gemini", "♊", NULL},
|
|
358
|
+
{"ghost", "👻", NULL},
|
|
359
|
+
{"gift", "🎁", NULL},
|
|
360
|
+
{"gift_heart", "💝", NULL},
|
|
361
|
+
{"girl", "👧", NULL},
|
|
362
|
+
{"globe_with_meridians", "🌐", NULL},
|
|
363
|
+
{"goat", "🐐", NULL},
|
|
364
|
+
{"goberserk", NULL, "https://github.githubassets.com/images/icons/emoji/goberserk.png"},
|
|
365
|
+
{"godmode", NULL, "https://github.githubassets.com/images/icons/emoji/godmode.png"},
|
|
366
|
+
{"golf", "⛳", NULL},
|
|
367
|
+
{"grapes", "🍇", NULL},
|
|
368
|
+
{"green_apple", "🍏", NULL},
|
|
369
|
+
{"green_book", "📗", NULL},
|
|
370
|
+
{"green_heart", "💚", NULL},
|
|
371
|
+
{"grey_exclamation", "❕", NULL},
|
|
372
|
+
{"grey_question", "❔", NULL},
|
|
373
|
+
{"grimacing", "😬", NULL},
|
|
374
|
+
{"grin", "😁", NULL},
|
|
375
|
+
{"grinning", "😀", NULL},
|
|
376
|
+
{"guardsman", "💂♂️", NULL},
|
|
377
|
+
{"guitar", "🎸", NULL},
|
|
378
|
+
{"gun", "🔫", NULL},
|
|
379
|
+
|
|
380
|
+
/* H */
|
|
381
|
+
{"haircut", "💇", NULL},
|
|
382
|
+
{"hamburger", "🍔", NULL},
|
|
383
|
+
{"hammer", "🔨", NULL},
|
|
384
|
+
{"hamster", "🐹", NULL},
|
|
385
|
+
{"hand", "✋", NULL},
|
|
386
|
+
{"handbag", "👜", NULL},
|
|
387
|
+
{"hankey", "💩", NULL},
|
|
388
|
+
{"hash", "#️⃣", NULL},
|
|
389
|
+
{"hatched_chick", "🐥", NULL},
|
|
390
|
+
{"hatching_chick", "🐣", NULL},
|
|
391
|
+
{"headphones", "🎧", NULL},
|
|
392
|
+
{"hear_no_evil", "🙉", NULL},
|
|
393
|
+
{"heart", "❤️", NULL},
|
|
394
|
+
{"heart_decoration", "💟", NULL},
|
|
395
|
+
{"heart_eyes", "😍", NULL},
|
|
396
|
+
{"heart_eyes_cat", "😻", NULL},
|
|
397
|
+
{"heartbeat", "💓", NULL},
|
|
398
|
+
{"heartpulse", "💗", NULL},
|
|
399
|
+
{"hearts", "♥️", NULL},
|
|
400
|
+
{"heavy_check_mark", "✔️", NULL},
|
|
401
|
+
{"heavy_division_sign", "➗", NULL},
|
|
402
|
+
{"heavy_dollar_sign", "💲", NULL},
|
|
403
|
+
{"heavy_exclamation_mark", "❗", NULL},
|
|
404
|
+
{"heavy_minus_sign", "➖", NULL},
|
|
405
|
+
{"heavy_multiplication_x", "✖️", NULL},
|
|
406
|
+
{"heavy_plus_sign", "➕", NULL},
|
|
407
|
+
{"helicopter", "🚁", NULL},
|
|
408
|
+
{"herb", "🌿", NULL},
|
|
409
|
+
{"hibiscus", "🌺", NULL},
|
|
410
|
+
{"high_brightness", "🔆", NULL},
|
|
411
|
+
{"high_heel", "👠", NULL},
|
|
412
|
+
{"hocho", "🔪", NULL},
|
|
413
|
+
{"honey_pot", "🍯", NULL},
|
|
414
|
+
{"honeybee", "🐝", NULL},
|
|
415
|
+
{"horse", "🐴", NULL},
|
|
416
|
+
{"horse_racing", "🏇", NULL},
|
|
417
|
+
{"hospital", "🏥", NULL},
|
|
418
|
+
{"hotel", "🏨", NULL},
|
|
419
|
+
{"hotsprings", "♨️", NULL},
|
|
420
|
+
{"hourglass", "⌛", NULL},
|
|
421
|
+
{"hourglass_flowing_sand", "⏳", NULL},
|
|
422
|
+
{"house", "🏠", NULL},
|
|
423
|
+
{"house_with_garden", "🏡", NULL},
|
|
424
|
+
{"hurtrealbad", NULL, "https://github.githubassets.com/images/icons/emoji/hurtrealbad.png"},
|
|
425
|
+
{"hushed", "😯", NULL},
|
|
426
|
+
|
|
427
|
+
/* I */
|
|
428
|
+
{"ice_cream", "🍨", NULL},
|
|
429
|
+
{"icecream", "🍦", NULL},
|
|
430
|
+
{"id", "🆔", NULL},
|
|
431
|
+
{"ideograph_advantage", "🉐", NULL},
|
|
432
|
+
{"imp", "👿", NULL},
|
|
433
|
+
{"inbox_tray", "📥", NULL},
|
|
434
|
+
{"incoming_envelope", "📨", NULL},
|
|
435
|
+
{"information_desk_person", "💁", NULL},
|
|
436
|
+
{"information_source", "ℹ️", NULL},
|
|
437
|
+
{"innocent", "😇", NULL},
|
|
438
|
+
{"interrobang", "⁉️", NULL},
|
|
439
|
+
{"iphone", "📱", NULL},
|
|
440
|
+
{"it", "🇮🇹", NULL},
|
|
441
|
+
{"izakaya_lantern", "🏮", NULL},
|
|
442
|
+
|
|
443
|
+
/* J */
|
|
444
|
+
{"jack_o_lantern", "🎃", NULL},
|
|
445
|
+
{"japan", "🗾", NULL},
|
|
446
|
+
{"japanese_castle", "🏯", NULL},
|
|
447
|
+
{"japanese_goblin", "👺", NULL},
|
|
448
|
+
{"japanese_ogre", "👹", NULL},
|
|
449
|
+
{"jeans", "👖", NULL},
|
|
450
|
+
{"joy", "😂", NULL},
|
|
451
|
+
{"joy_cat", "😹", NULL},
|
|
452
|
+
{"jp", "🇯🇵", NULL},
|
|
453
|
+
|
|
454
|
+
/* K */
|
|
455
|
+
{"key", "🔑", NULL},
|
|
456
|
+
{"keycap_ten", "🔟", NULL},
|
|
457
|
+
{"kimono", "👘", NULL},
|
|
458
|
+
{"kiss", "💋", NULL},
|
|
459
|
+
{"kissing", "😗", NULL},
|
|
460
|
+
{"kissing_cat", "😽", NULL},
|
|
461
|
+
{"kissing_closed_eyes", "😚", NULL},
|
|
462
|
+
{"kissing_heart", "😘", NULL},
|
|
463
|
+
{"kissing_smiling_eyes", "😙", NULL},
|
|
464
|
+
{"koala", "🐨", NULL},
|
|
465
|
+
{"koko", "🈁", NULL},
|
|
466
|
+
{"kr", "🇰🇷", NULL},
|
|
467
|
+
|
|
468
|
+
/* L */
|
|
469
|
+
{"large_blue_circle", "🔵", NULL},
|
|
470
|
+
{"large_blue_diamond", "🔷", NULL},
|
|
471
|
+
{"large_orange_diamond", "🔶", NULL},
|
|
472
|
+
{"last_quarter_moon", "🌗", NULL},
|
|
473
|
+
{"last_quarter_moon_with_face", "🌜", NULL},
|
|
474
|
+
{"laughing", "😆", NULL},
|
|
475
|
+
{"leaves", "🍃", NULL},
|
|
476
|
+
{"ledger", "📒", NULL},
|
|
477
|
+
{"left_luggage", "🛅", NULL},
|
|
478
|
+
{"left_right_arrow", "↔️", NULL},
|
|
479
|
+
{"leftwards_arrow_with_hook", "↩️", NULL},
|
|
480
|
+
{"lemon", "🍋", NULL},
|
|
481
|
+
{"leo", "♌", NULL},
|
|
482
|
+
{"leopard", "🐆", NULL},
|
|
483
|
+
{"libra", "♎", NULL},
|
|
484
|
+
{"light_rail", "🚈", NULL},
|
|
485
|
+
{"link", "🔗", NULL},
|
|
486
|
+
{"lips", "👄", NULL},
|
|
487
|
+
{"lipstick", "💄", NULL},
|
|
488
|
+
{"lock", "🔒", NULL},
|
|
489
|
+
{"lock_with_ink_pen", "🔏", NULL},
|
|
490
|
+
{"lollipop", "🍭", NULL},
|
|
491
|
+
{"loop", "➿", NULL},
|
|
492
|
+
{"loudspeaker", "📢", NULL},
|
|
493
|
+
{"love_hotel", "🏩", NULL},
|
|
494
|
+
{"love_letter", "💌", NULL},
|
|
495
|
+
{"low_brightness", "🔅", NULL},
|
|
496
|
+
|
|
497
|
+
/* M */
|
|
498
|
+
{"m", "Ⓜ️", NULL},
|
|
499
|
+
{"mag", "🔍", NULL},
|
|
500
|
+
{"mag_right", "🔎", NULL},
|
|
501
|
+
{"mahjong", "🀄", NULL},
|
|
502
|
+
{"mailbox", "📫", NULL},
|
|
503
|
+
{"mailbox_closed", "📪", NULL},
|
|
504
|
+
{"mailbox_with_mail", "📬", NULL},
|
|
505
|
+
{"mailbox_with_no_mail", "📭", NULL},
|
|
506
|
+
{"man", "👨", NULL},
|
|
507
|
+
{"man_with_gua_pi_mao", "👲", NULL},
|
|
508
|
+
{"man_with_turban", "👳♂️", NULL},
|
|
509
|
+
{"mans_shoe", "👞", NULL},
|
|
510
|
+
{"maple_leaf", "🍁", NULL},
|
|
511
|
+
{"mask", "😷", NULL},
|
|
512
|
+
{"massage", "💆", NULL},
|
|
513
|
+
{"meat_on_bone", "🍖", NULL},
|
|
514
|
+
{"mega", "📣", NULL},
|
|
515
|
+
{"melon", "🍈", NULL},
|
|
516
|
+
{"memo", "📝", NULL},
|
|
517
|
+
{"mens", "🚹", NULL},
|
|
518
|
+
{"metal", "🤘", NULL},
|
|
519
|
+
{"metro", "🚇", NULL},
|
|
520
|
+
{"microphone", "🎤", NULL},
|
|
521
|
+
{"microscope", "🔬", NULL},
|
|
522
|
+
{"milky_way", "🌌", NULL},
|
|
523
|
+
{"minibus", "🚐", NULL},
|
|
524
|
+
{"minidisc", "💽", NULL},
|
|
525
|
+
{"mobile_phone_off", "📴", NULL},
|
|
526
|
+
{"money_with_wings", "💸", NULL},
|
|
527
|
+
{"moneybag", "💰", NULL},
|
|
528
|
+
{"monkey", "🐒", NULL},
|
|
529
|
+
{"monkey_face", "🐵", NULL},
|
|
530
|
+
{"monorail", "🚝", NULL},
|
|
531
|
+
{"moon", "🌔", NULL},
|
|
532
|
+
{"mortar_board", "🎓", NULL},
|
|
533
|
+
{"mount_fuji", "🗻", NULL},
|
|
534
|
+
{"mountain_bicyclist", "🚵", NULL},
|
|
535
|
+
{"mountain_cableway", "🚠", NULL},
|
|
536
|
+
{"mountain_railway", "🚞", NULL},
|
|
537
|
+
{"mouse", "🐭", NULL},
|
|
538
|
+
{"mouse2", "🐁", NULL},
|
|
539
|
+
{"movie_camera", "🎥", NULL},
|
|
540
|
+
{"moyai", "🗿", NULL},
|
|
541
|
+
{"muscle", "💪", NULL},
|
|
542
|
+
{"mushroom", "🍄", NULL},
|
|
543
|
+
{"musical_keyboard", "🎹", NULL},
|
|
544
|
+
{"musical_note", "🎵", NULL},
|
|
545
|
+
{"musical_score", "🎼", NULL},
|
|
546
|
+
{"mute", "🔇", NULL},
|
|
547
|
+
|
|
548
|
+
/* N */
|
|
549
|
+
{"nail_care", "💅", NULL},
|
|
550
|
+
{"name_badge", "📛", NULL},
|
|
551
|
+
{"neckbeard", NULL, "https://github.githubassets.com/images/icons/emoji/neckbeard.png"},
|
|
552
|
+
{"necktie", "👔", NULL},
|
|
553
|
+
{"negative_squared_cross_mark", "❎", NULL},
|
|
554
|
+
{"neutral_face", "😐", NULL},
|
|
555
|
+
{"new", "🆕", NULL},
|
|
556
|
+
{"new_moon", "🌑", NULL},
|
|
557
|
+
{"new_moon_with_face", "🌚", NULL},
|
|
558
|
+
{"newspaper", "📰", NULL},
|
|
559
|
+
{"ng", "🆖", NULL},
|
|
560
|
+
{"nine", "9️⃣", NULL},
|
|
561
|
+
{"no_bell", "🔕", NULL},
|
|
562
|
+
{"no_bicycles", "🚳", NULL},
|
|
563
|
+
{"no_entry", "⛔", NULL},
|
|
564
|
+
{"no_entry_sign", "🚫", NULL},
|
|
565
|
+
{"no_good", "🙅", NULL},
|
|
566
|
+
{"no_mobile_phones", "📵", NULL},
|
|
567
|
+
{"no_mouth", "😶", NULL},
|
|
568
|
+
{"no_pedestrians", "🚷", NULL},
|
|
569
|
+
{"no_smoking", "🚭", NULL},
|
|
570
|
+
{"non-potable_water", "🚱", NULL},
|
|
571
|
+
{"nose", "👃", NULL},
|
|
572
|
+
{"notebook", "📓", NULL},
|
|
573
|
+
{"notebook_with_decorative_cover", "📔", NULL},
|
|
574
|
+
{"notes", "🎶", NULL},
|
|
575
|
+
{"nut_and_bolt", "🔩", NULL},
|
|
576
|
+
|
|
577
|
+
/* O */
|
|
578
|
+
{"o", "⭕", NULL},
|
|
579
|
+
{"o2", "🅾️", NULL},
|
|
580
|
+
{"ocean", "🌊", NULL},
|
|
581
|
+
{"octocat", NULL, "https://github.githubassets.com/images/icons/emoji/octocat.png"},
|
|
582
|
+
{"octopus", "🐙", NULL},
|
|
583
|
+
{"oden", "🍢", NULL},
|
|
584
|
+
{"office", "🏢", NULL},
|
|
585
|
+
{"ok", "🆗", NULL},
|
|
586
|
+
{"ok_hand", "👌", NULL},
|
|
587
|
+
{"ok_woman", "🙆♀️", NULL},
|
|
588
|
+
{"older_man", "👴", NULL},
|
|
589
|
+
{"older_woman", "👵", NULL},
|
|
590
|
+
{"on", "🔛", NULL},
|
|
591
|
+
{"oncoming_automobile", "🚘", NULL},
|
|
592
|
+
{"oncoming_bus", "🚍", NULL},
|
|
593
|
+
{"oncoming_police_car", "🚔", NULL},
|
|
594
|
+
{"oncoming_taxi", "🚖", NULL},
|
|
595
|
+
{"one", "1️⃣", NULL},
|
|
596
|
+
{"open_file_folder", "📂", NULL},
|
|
597
|
+
{"open_hands", "👐", NULL},
|
|
598
|
+
{"open_mouth", "😮", NULL},
|
|
599
|
+
{"ophiuchus", "⛎", NULL},
|
|
600
|
+
{"orange_book", "📙", NULL},
|
|
601
|
+
{"outbox_tray", "📤", NULL},
|
|
602
|
+
{"ox", "🐂", NULL},
|
|
603
|
+
|
|
604
|
+
/* P */
|
|
605
|
+
{"page_facing_up", "📄", NULL},
|
|
606
|
+
{"page_with_curl", "📃", NULL},
|
|
607
|
+
{"pager", "📟", NULL},
|
|
608
|
+
{"palm_tree", "🌴", NULL},
|
|
609
|
+
{"panda_face", "🐼", NULL},
|
|
610
|
+
{"paperclip", "📎", NULL},
|
|
611
|
+
{"parking", "🅿️", NULL},
|
|
612
|
+
{"part_alternation_mark", "〽️", NULL},
|
|
613
|
+
{"partly_sunny", "⛅", NULL},
|
|
614
|
+
{"passport_control", "🛂", NULL},
|
|
615
|
+
{"paw_prints", "🐾", NULL},
|
|
616
|
+
{"peach", "🍑", NULL},
|
|
617
|
+
{"pear", "🍐", NULL},
|
|
618
|
+
{"pencil", "📝", NULL},
|
|
619
|
+
{"pencil2", "✏️", NULL},
|
|
620
|
+
{"penguin", "🐧", NULL},
|
|
621
|
+
{"pensive", "😔", NULL},
|
|
622
|
+
{"performing_arts", "🎭", NULL},
|
|
623
|
+
{"persevere", "😣", NULL},
|
|
624
|
+
{"phone", "☎️", NULL},
|
|
625
|
+
{"pig", "🐷", NULL},
|
|
626
|
+
{"pig2", "🐖", NULL},
|
|
627
|
+
{"pig_nose", "🐽", NULL},
|
|
628
|
+
{"pill", "💊", NULL},
|
|
629
|
+
{"pineapple", "🍍", NULL},
|
|
630
|
+
{"pisces", "♓", NULL},
|
|
631
|
+
{"pizza", "🍕", NULL},
|
|
632
|
+
{"point_down", "👇", NULL},
|
|
633
|
+
{"point_left", "👈", NULL},
|
|
634
|
+
{"point_right", "👉", NULL},
|
|
635
|
+
{"point_up", "☝️", NULL},
|
|
636
|
+
{"point_up_2", "👆", NULL},
|
|
637
|
+
{"police_car", "🚓", NULL},
|
|
638
|
+
{"poodle", "🐩", NULL},
|
|
639
|
+
{"poop", "💩", NULL},
|
|
640
|
+
{"post_office", "🏣", NULL},
|
|
641
|
+
{"postal_horn", "📯", NULL},
|
|
642
|
+
{"postbox", "📮", NULL},
|
|
643
|
+
{"potable_water", "🚰", NULL},
|
|
644
|
+
{"pouch", "👝", NULL},
|
|
645
|
+
{"poultry_leg", "🍗", NULL},
|
|
646
|
+
{"pound", "💷", NULL},
|
|
647
|
+
{"pouting_cat", "😾", NULL},
|
|
648
|
+
{"pray", "🙏", NULL},
|
|
649
|
+
{"princess", "👸", NULL},
|
|
650
|
+
{"punch", "👊", NULL},
|
|
651
|
+
{"purple_heart", "💜", NULL},
|
|
652
|
+
{"purse", "👛", NULL},
|
|
653
|
+
{"pushpin", "📌", NULL},
|
|
654
|
+
{"put_litter_in_its_place", "🚮", NULL},
|
|
655
|
+
|
|
656
|
+
/* Q */
|
|
657
|
+
{"question", "❓", NULL},
|
|
658
|
+
|
|
659
|
+
/* R */
|
|
660
|
+
{"rabbit", "🐰", NULL},
|
|
661
|
+
{"rabbit2", "🐇", NULL},
|
|
662
|
+
{"racehorse", "🐎", NULL},
|
|
663
|
+
{"radio", "📻", NULL},
|
|
664
|
+
{"radio_button", "🔘", NULL},
|
|
665
|
+
{"rage", "😡", NULL},
|
|
666
|
+
{"rage1", NULL, "https://github.githubassets.com/images/icons/emoji/rage1.png"},
|
|
667
|
+
{"rage2", NULL, "https://github.githubassets.com/images/icons/emoji/rage2.png"},
|
|
668
|
+
{"rage3", NULL, "https://github.githubassets.com/images/icons/emoji/rage3.png"},
|
|
669
|
+
{"rage4", NULL, "https://github.githubassets.com/images/icons/emoji/rage4.png"},
|
|
670
|
+
{"railway_car", "🚃", NULL},
|
|
671
|
+
{"rainbow", "🌈", NULL},
|
|
672
|
+
{"raised_hand", "✋", NULL},
|
|
673
|
+
{"raised_hands", "🙌", NULL},
|
|
674
|
+
{"raising_hand", "🙋", NULL},
|
|
675
|
+
{"ram", "🐏", NULL},
|
|
676
|
+
{"ramen", "🍜", NULL},
|
|
677
|
+
{"rat", "🐀", NULL},
|
|
678
|
+
{"recycle", "♻️", NULL},
|
|
679
|
+
{"red_car", "🚗", NULL},
|
|
680
|
+
{"red_circle", "🔴", NULL},
|
|
681
|
+
{"registered", "®️", NULL},
|
|
682
|
+
{"relaxed", "☺️", NULL},
|
|
683
|
+
{"relieved", "😌", NULL},
|
|
684
|
+
{"repeat", "🔁", NULL},
|
|
685
|
+
{"repeat_one", "🔂", NULL},
|
|
686
|
+
{"restroom", "🚻", NULL},
|
|
687
|
+
{"revolving_hearts", "💞", NULL},
|
|
688
|
+
{"rewind", "⏪", NULL},
|
|
689
|
+
{"ribbon", "🎀", NULL},
|
|
690
|
+
{"rice", "🍚", NULL},
|
|
691
|
+
{"rice_ball", "🍙", NULL},
|
|
692
|
+
{"rice_cracker", "🍘", NULL},
|
|
693
|
+
{"rice_scene", "🎑", NULL},
|
|
694
|
+
{"ring", "💍", NULL},
|
|
695
|
+
{"rocket", "🚀", NULL},
|
|
696
|
+
{"roller_coaster", "🎢", NULL},
|
|
697
|
+
{"rooster", "🐓", NULL},
|
|
698
|
+
{"rose", "🌹", NULL},
|
|
699
|
+
{"rotating_light", "🚨", NULL},
|
|
700
|
+
{"round_pushpin", "📍", NULL},
|
|
701
|
+
{"rowboat", "🚣", NULL},
|
|
702
|
+
{"ru", "🇷🇺", NULL},
|
|
703
|
+
{"rugby_football", "🏉", NULL},
|
|
704
|
+
{"runner", "🏃", NULL},
|
|
705
|
+
{"running", "🏃", NULL},
|
|
706
|
+
{"running_shirt_with_sash", "🎽", NULL},
|
|
707
|
+
|
|
708
|
+
/* S */
|
|
709
|
+
{"sa", "🈂️", NULL},
|
|
710
|
+
{"sagittarius", "♐", NULL},
|
|
711
|
+
{"sailboat", "⛵", NULL},
|
|
712
|
+
{"sake", "🍶", NULL},
|
|
713
|
+
{"sandal", "👡", NULL},
|
|
714
|
+
{"santa", "🎅", NULL},
|
|
715
|
+
{"satellite", "📡", NULL},
|
|
716
|
+
{"satisfied", "😆", NULL},
|
|
717
|
+
{"saxophone", "🎷", NULL},
|
|
718
|
+
{"school", "🏫", NULL},
|
|
719
|
+
{"school_satchel", "🎒", NULL},
|
|
720
|
+
{"scissors", "✂️", NULL},
|
|
721
|
+
{"scorpius", "♏", NULL},
|
|
722
|
+
{"scream", "😱", NULL},
|
|
723
|
+
{"scream_cat", "🙀", NULL},
|
|
724
|
+
{"scroll", "📜", NULL},
|
|
725
|
+
{"seat", "💺", NULL},
|
|
726
|
+
{"secret", "㊙️", NULL},
|
|
727
|
+
{"see_no_evil", "🙈", NULL},
|
|
728
|
+
{"seedling", "🌱", NULL},
|
|
729
|
+
{"seven", "7️⃣", NULL},
|
|
730
|
+
{"shaved_ice", "🍧", NULL},
|
|
731
|
+
{"sheep", "🐑", NULL},
|
|
732
|
+
{"shell", "🐚", NULL},
|
|
733
|
+
{"ship", "🚢", NULL},
|
|
734
|
+
{"shirt", "👕", NULL},
|
|
735
|
+
{"shit", "💩", NULL},
|
|
736
|
+
{"shoe", "👞", NULL},
|
|
737
|
+
{"shower", "🚿", NULL},
|
|
738
|
+
{"signal_strength", "📶", NULL},
|
|
739
|
+
{"six", "6️⃣", NULL},
|
|
740
|
+
{"six_pointed_star", "🔯", NULL},
|
|
741
|
+
{"ski", "🎿", NULL},
|
|
742
|
+
{"skull", "💀", NULL},
|
|
743
|
+
{"sleeping", "😴", NULL},
|
|
744
|
+
{"sleepy", "😪", NULL},
|
|
745
|
+
{"slot_machine", "🎰", NULL},
|
|
746
|
+
{"small_blue_diamond", "🔹", NULL},
|
|
747
|
+
{"small_orange_diamond", "🔸", NULL},
|
|
748
|
+
{"small_red_triangle", "🔺", NULL},
|
|
749
|
+
{"small_red_triangle_down", "🔻", NULL},
|
|
750
|
+
{"smile", "😄", NULL},
|
|
751
|
+
{"smile_cat", "😸", NULL},
|
|
752
|
+
{"smiley", "😃", NULL},
|
|
753
|
+
{"smiley_cat", "😺", NULL},
|
|
754
|
+
{"smiling_imp", "😈", NULL},
|
|
755
|
+
{"smirk", "😏", NULL},
|
|
756
|
+
{"smirk_cat", "😼", NULL},
|
|
757
|
+
{"smoking", "🚬", NULL},
|
|
758
|
+
{"snail", "🐌", NULL},
|
|
759
|
+
{"snake", "🐍", NULL},
|
|
760
|
+
{"snowboarder", "🏂", NULL},
|
|
761
|
+
{"snowflake", "❄️", NULL},
|
|
762
|
+
{"snowman", "⛄", NULL},
|
|
763
|
+
{"sob", "😭", NULL},
|
|
764
|
+
{"soccer", "⚽", NULL},
|
|
765
|
+
{"soon", "🔜", NULL},
|
|
766
|
+
{"sos", "🆘", NULL},
|
|
767
|
+
{"sound", "🔉", NULL},
|
|
768
|
+
{"space_invader", "👾", NULL},
|
|
769
|
+
{"spades", "♠️", NULL},
|
|
770
|
+
{"spaghetti", "🍝", NULL},
|
|
771
|
+
{"sparkler", "🎇", NULL},
|
|
772
|
+
{"sparkles", "✨", NULL},
|
|
773
|
+
{"sparkling_heart", "💖", NULL},
|
|
774
|
+
{"speak_no_evil", "🙊", NULL},
|
|
775
|
+
{"speaker", "🔈", NULL},
|
|
776
|
+
{"speech_balloon", "💬", NULL},
|
|
777
|
+
{"speedboat", "🚤", NULL},
|
|
778
|
+
{"star", "⭐", NULL},
|
|
779
|
+
{"star2", "🌟", NULL},
|
|
780
|
+
{"stars", "🌠", NULL},
|
|
781
|
+
{"station", "🚉", NULL},
|
|
782
|
+
{"statue_of_liberty", "🗽", NULL},
|
|
783
|
+
{"steam_locomotive", "🚂", NULL},
|
|
784
|
+
{"stew", "🍲", NULL},
|
|
785
|
+
{"straight_ruler", "📏", NULL},
|
|
786
|
+
{"strawberry", "🍓", NULL},
|
|
787
|
+
{"stuck_out_tongue", "😛", NULL},
|
|
788
|
+
{"stuck_out_tongue_closed_eyes", "😝", NULL},
|
|
789
|
+
{"stuck_out_tongue_winking_eye", "😜", NULL},
|
|
790
|
+
{"sun_with_face", "🌞", NULL},
|
|
791
|
+
{"sunflower", "🌻", NULL},
|
|
792
|
+
{"sunglasses", "😎", NULL},
|
|
793
|
+
{"sunny", "☀️", NULL},
|
|
794
|
+
{"sunrise", "🌅", NULL},
|
|
795
|
+
{"sunrise_over_mountains", "🌄", NULL},
|
|
796
|
+
{"surfer", "🏄", NULL},
|
|
797
|
+
{"sushi", "🍣", NULL},
|
|
798
|
+
{"suspect", NULL, "https://github.githubassets.com/images/icons/emoji/suspect.png"},
|
|
799
|
+
{"suspension_railway", "🚟", NULL},
|
|
800
|
+
{"sweat", "😓", NULL},
|
|
801
|
+
{"sweat_drops", "💦", NULL},
|
|
802
|
+
{"sweat_smile", "😅", NULL},
|
|
803
|
+
{"sweet_potato", "🍠", NULL},
|
|
804
|
+
{"swimmer", "🏊", NULL},
|
|
805
|
+
{"symbols", "🔣", NULL},
|
|
806
|
+
{"syringe", "💉", NULL},
|
|
807
|
+
|
|
808
|
+
/* T */
|
|
809
|
+
{"tada", "🎉", NULL},
|
|
810
|
+
{"tanabata_tree", "🎋", NULL},
|
|
811
|
+
{"tangerine", "🍊", NULL},
|
|
812
|
+
{"taurus", "♉", NULL},
|
|
813
|
+
{"taxi", "🚕", NULL},
|
|
814
|
+
{"tea", "🍵", NULL},
|
|
815
|
+
{"telephone", "☎️", NULL},
|
|
816
|
+
{"telephone_receiver", "📞", NULL},
|
|
817
|
+
{"telescope", "🔭", NULL},
|
|
818
|
+
{"tennis", "🎾", NULL},
|
|
819
|
+
{"tent", "⛺", NULL},
|
|
820
|
+
{"thought_balloon", "💭", NULL},
|
|
821
|
+
{"three", "3️⃣", NULL},
|
|
822
|
+
{"thumbsdown", "👎", NULL},
|
|
823
|
+
{"thumbsup", "👍", NULL},
|
|
824
|
+
{"ticket", "🎫", NULL},
|
|
825
|
+
{"tiger", "🐯", NULL},
|
|
826
|
+
{"tiger2", "🐅", NULL},
|
|
827
|
+
{"tired_face", "😫", NULL},
|
|
828
|
+
{"tm", "™️", NULL},
|
|
829
|
+
{"toilet", "🚽", NULL},
|
|
830
|
+
{"tokyo_tower", "🗼", NULL},
|
|
831
|
+
{"tomato", "🍅", NULL},
|
|
832
|
+
{"tongue", "👅", NULL},
|
|
833
|
+
{"top", "🔝", NULL},
|
|
834
|
+
{"tophat", "🎩", NULL},
|
|
835
|
+
{"tractor", "🚜", NULL},
|
|
836
|
+
{"traffic_light", "🚥", NULL},
|
|
837
|
+
{"train", "🚋", NULL},
|
|
838
|
+
{"train2", "🚆", NULL},
|
|
839
|
+
{"tram", "🚊", NULL},
|
|
840
|
+
{"triangular_flag_on_post", "🚩", NULL},
|
|
841
|
+
{"triangular_ruler", "📐", NULL},
|
|
842
|
+
{"trident", "🔱", NULL},
|
|
843
|
+
{"triumph", "😤", NULL},
|
|
844
|
+
{"trolleybus", "🚎", NULL},
|
|
845
|
+
{"trollface", NULL, "https://github.githubassets.com/images/icons/emoji/trollface.png"},
|
|
846
|
+
{"trophy", "🏆", NULL},
|
|
847
|
+
{"tropical_drink", "🍹", NULL},
|
|
848
|
+
{"tropical_fish", "🐠", NULL},
|
|
849
|
+
{"truck", "🚚", NULL},
|
|
850
|
+
{"trumpet", "🎺", NULL},
|
|
851
|
+
{"tshirt", "👕", NULL},
|
|
852
|
+
{"tulip", "🌷", NULL},
|
|
853
|
+
{"turtle", "🐢", NULL},
|
|
854
|
+
{"tv", "📺", NULL},
|
|
855
|
+
{"twisted_rightwards_arrows", "🔀", NULL},
|
|
856
|
+
{"two", "2️⃣", NULL},
|
|
857
|
+
{"two_hearts", "💕", NULL},
|
|
858
|
+
{"two_men_holding_hands", "👬", NULL},
|
|
859
|
+
{"two_women_holding_hands", "👭", NULL},
|
|
860
|
+
|
|
861
|
+
/* U */
|
|
862
|
+
{"u5272", "🈹", NULL},
|
|
863
|
+
{"u5408", "🈴", NULL},
|
|
864
|
+
{"u55b6", "🈺", NULL},
|
|
865
|
+
{"u6307", "🈯", NULL},
|
|
866
|
+
{"u6708", "🈷️", NULL},
|
|
867
|
+
{"u6709", "🈶", NULL},
|
|
868
|
+
{"u6e80", "🈵", NULL},
|
|
869
|
+
{"u7121", "🈚", NULL},
|
|
870
|
+
{"u7533", "🈸", NULL},
|
|
871
|
+
{"u7981", "🈲", NULL},
|
|
872
|
+
{"u7a7a", "🈳", NULL},
|
|
873
|
+
{"uk", "🇬🇧", NULL},
|
|
874
|
+
{"umbrella", "☔", NULL},
|
|
875
|
+
{"unamused", "😒", NULL},
|
|
876
|
+
{"underage", "🔞", NULL},
|
|
877
|
+
{"unlock", "🔓", NULL},
|
|
878
|
+
{"up", "🆙", NULL},
|
|
879
|
+
{"us", "🇺🇸", NULL},
|
|
880
|
+
|
|
881
|
+
/* V */
|
|
882
|
+
{"v", "✌️", NULL},
|
|
883
|
+
{"vertical_traffic_light", "🚦", NULL},
|
|
884
|
+
{"vhs", "📼", NULL},
|
|
885
|
+
{"vibration_mode", "📳", NULL},
|
|
886
|
+
{"video_camera", "📹", NULL},
|
|
887
|
+
{"video_game", "🎮", NULL},
|
|
888
|
+
{"violin", "🎻", NULL},
|
|
889
|
+
{"virgo", "♍", NULL},
|
|
890
|
+
{"volcano", "🌋", NULL},
|
|
891
|
+
{"vs", "🆚", NULL},
|
|
892
|
+
|
|
893
|
+
/* W */
|
|
894
|
+
{"walking", "🚶", NULL},
|
|
895
|
+
{"waning_crescent_moon", "🌘", NULL},
|
|
896
|
+
{"waning_gibbous_moon", "🌖", NULL},
|
|
897
|
+
{"warning", "⚠️", NULL},
|
|
898
|
+
{"watch", "⌚", NULL},
|
|
899
|
+
{"water_buffalo", "🐃", NULL},
|
|
900
|
+
{"watermelon", "🍉", NULL},
|
|
901
|
+
{"wave", "👋", NULL},
|
|
902
|
+
{"wavy_dash", "〰️", NULL},
|
|
903
|
+
{"waxing_crescent_moon", "🌒", NULL},
|
|
904
|
+
{"waxing_gibbous_moon", "🌔", NULL},
|
|
905
|
+
{"wc", "🚾", NULL},
|
|
906
|
+
{"weary", "😩", NULL},
|
|
907
|
+
{"wedding", "💒", NULL},
|
|
908
|
+
{"whale", "🐳", NULL},
|
|
909
|
+
{"whale2", "🐋", NULL},
|
|
910
|
+
{"wheelchair", "♿", NULL},
|
|
911
|
+
{"white_check_mark", "✅", NULL},
|
|
912
|
+
{"white_circle", "⚪", NULL},
|
|
913
|
+
{"white_flower", "💮", NULL},
|
|
914
|
+
{"white_square_button", "🔳", NULL},
|
|
915
|
+
{"wind_chime", "🎐", NULL},
|
|
916
|
+
{"wine_glass", "🍷", NULL},
|
|
917
|
+
{"wink", "😉", NULL},
|
|
918
|
+
{"wolf", "🐺", NULL},
|
|
919
|
+
{"woman", "👩", NULL},
|
|
920
|
+
{"womans_clothes", "👚", NULL},
|
|
921
|
+
{"womans_hat", "👒", NULL},
|
|
922
|
+
{"womens", "🚺", NULL},
|
|
923
|
+
{"worried", "😟", NULL},
|
|
924
|
+
{"wrench", "🔧", NULL},
|
|
925
|
+
|
|
926
|
+
/* X */
|
|
927
|
+
{"x", "❌", NULL},
|
|
928
|
+
|
|
929
|
+
/* Y */
|
|
930
|
+
{"yellow_heart", "💛", NULL},
|
|
931
|
+
{"yen", "💴", NULL},
|
|
932
|
+
{"yum", "😋", NULL},
|
|
933
|
+
|
|
934
|
+
/* Z */
|
|
935
|
+
{"zap", "⚡", NULL},
|
|
936
|
+
{"zero", "0️⃣", NULL},
|
|
937
|
+
{"zzz", "💤", NULL},
|
|
938
|
+
|
|
939
|
+
{NULL, NULL, NULL} /* Terminator */
|
|
940
|
+
};
|
|
941
|
+
|
|
942
|
+
#endif /* APEX_EMOJI_DATA_H */
|