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
data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Modes.html
ADDED
|
@@ -0,0 +1,1980 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
|
|
4
|
+
<head>
|
|
5
|
+
|
|
6
|
+
<meta charset="UTF-8">
|
|
7
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
8
|
+
<meta name="generator" content="Apex 0.1.49">
|
|
9
|
+
<title>Document</title>
|
|
10
|
+
<style>
|
|
11
|
+
body {
|
|
12
|
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
|
|
13
|
+
line-height: 1.6;
|
|
14
|
+
max-width: 800px;
|
|
15
|
+
margin: 2rem auto;
|
|
16
|
+
padding: 0 1rem;
|
|
17
|
+
color: #333;
|
|
18
|
+
}
|
|
19
|
+
pre { background: #f5f5f5; padding: 1rem; overflow-x: auto; }
|
|
20
|
+
code { background: #f0f0f0; padding: 0.2em 0.4em; border-radius: 3px; }
|
|
21
|
+
blockquote { border-left: 4px solid #ddd; margin: 0; padding-left: 1rem; color: #666; }
|
|
22
|
+
table { border-collapse: collapse; width: 100%%; }
|
|
23
|
+
th, td { border: 1px solid #ddd; padding: 0.5rem; }
|
|
24
|
+
th { background: #f5f5f5; }
|
|
25
|
+
tfoot td { background: #e8e8e8; }
|
|
26
|
+
figure.table-figure { width: fit-content; margin: 1em 0; }
|
|
27
|
+
figure.table-figure table { width: auto; }
|
|
28
|
+
figcaption { text-align: center; font-weight: bold; font-size: 0.8em; }
|
|
29
|
+
.page-break { page-break-after: always; }
|
|
30
|
+
.callout { padding: 1rem; margin: 1rem 0; border-left: 4px solid; }
|
|
31
|
+
.callout-note { border-color: #3b82f6; background: #eff6ff; }
|
|
32
|
+
.callout-warning { border-color: #f59e0b; background: #fffbeb; }
|
|
33
|
+
.callout-tip { border-color: #10b981; background: #f0fdf4; }
|
|
34
|
+
.callout-danger { border-color: #ef4444; background: #fef2f2; }
|
|
35
|
+
ins { background: #d4fcbc; text-decoration: none; }
|
|
36
|
+
del { background: #fbb6c2; text-decoration: line-through; }
|
|
37
|
+
mark { background: #fff3cd; }
|
|
38
|
+
.critic.comment { background: #e7e7e7; color: #666; font-style: italic; }
|
|
39
|
+
</style>
|
|
40
|
+
<style>
|
|
41
|
+
/* Base styles */
|
|
42
|
+
body {
|
|
43
|
+
-webkit-font-smoothing: antialiased;
|
|
44
|
+
-moz-osx-font-smoothing: grayscale;
|
|
45
|
+
font-size: 17px;
|
|
46
|
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
|
|
47
|
+
"Helvetica Neue", Arial, sans-serif;
|
|
48
|
+
line-height: 1.65;
|
|
49
|
+
color: #1e293b;
|
|
50
|
+
background-color: #fff;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
/* Sidebar / Main TOC - wider on larger screens */
|
|
54
|
+
.main-toc,
|
|
55
|
+
.sidebar {
|
|
56
|
+
position: fixed;
|
|
57
|
+
left: 0;
|
|
58
|
+
top: 0;
|
|
59
|
+
width: auto;
|
|
60
|
+
min-width: 180px;
|
|
61
|
+
max-width: 250px;
|
|
62
|
+
height: 100vh;
|
|
63
|
+
overflow-y: auto;
|
|
64
|
+
background: #1e293b;
|
|
65
|
+
color: rgba(255, 255, 255, 0.9);
|
|
66
|
+
border-right: 2px solid rgba(255, 255, 255, 0.1);
|
|
67
|
+
padding: 24px 20px 130px;
|
|
68
|
+
font-size: 14px;
|
|
69
|
+
z-index: 100;
|
|
70
|
+
margin-right: 1rem;
|
|
71
|
+
box-shadow: 4px 0 24px rgba(0, 0, 0, 0.08);
|
|
72
|
+
transition: transform 0.3s ease;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.main-toc ul,
|
|
76
|
+
.sidebar ul {
|
|
77
|
+
list-style: none;
|
|
78
|
+
padding-left: 0;
|
|
79
|
+
margin: 0;
|
|
80
|
+
padding-bottom: 80px;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.main-toc ul::after,
|
|
84
|
+
.sidebar ul::after {
|
|
85
|
+
content: "";
|
|
86
|
+
display: block;
|
|
87
|
+
height: 80px;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.main-toc li,
|
|
91
|
+
.sidebar li {
|
|
92
|
+
margin: 0.25em 0;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.main-toc a,
|
|
96
|
+
.sidebar a {
|
|
97
|
+
color: rgba(255, 255, 255, 0.85);
|
|
98
|
+
text-decoration: none;
|
|
99
|
+
display: block;
|
|
100
|
+
padding: 6px 12px;
|
|
101
|
+
border-radius: 4px;
|
|
102
|
+
transition: all 0.15s ease;
|
|
103
|
+
white-space: nowrap;
|
|
104
|
+
overflow: hidden;
|
|
105
|
+
text-overflow: ellipsis;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.main-toc a:hover,
|
|
109
|
+
.sidebar a:hover {
|
|
110
|
+
background: #334155;
|
|
111
|
+
color: #fff;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.sidebar a.active {
|
|
115
|
+
color: #0ea5e9;
|
|
116
|
+
font-weight: 500;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
/* Body margin for sidebar */
|
|
120
|
+
body {
|
|
121
|
+
margin-left: 270px;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
/* Hamburger menu button */
|
|
125
|
+
.hamburger-menu {
|
|
126
|
+
display: none;
|
|
127
|
+
position: fixed;
|
|
128
|
+
top: 12px;
|
|
129
|
+
left: 12px;
|
|
130
|
+
z-index: 200;
|
|
131
|
+
background: #1e293b;
|
|
132
|
+
border: 2px solid rgba(255, 255, 255, 0.1);
|
|
133
|
+
border-radius: 6px;
|
|
134
|
+
padding: 10px;
|
|
135
|
+
cursor: pointer;
|
|
136
|
+
color: rgba(255, 255, 255, 0.9);
|
|
137
|
+
font-size: 20px;
|
|
138
|
+
line-height: 1;
|
|
139
|
+
width: 44px;
|
|
140
|
+
height: 44px;
|
|
141
|
+
align-items: center;
|
|
142
|
+
justify-content: center;
|
|
143
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
|
|
144
|
+
transition: all 0.2s ease;
|
|
145
|
+
opacity: 0.2;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.hamburger-menu:hover {
|
|
149
|
+
background: #334155;
|
|
150
|
+
color: #fff;
|
|
151
|
+
opacity: 1;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
/* Move hamburger to the right of the sidebar when menu is open */
|
|
155
|
+
.hamburger-menu.active {
|
|
156
|
+
left: calc(
|
|
157
|
+
250px + 12px
|
|
158
|
+
); /* Position just to the right of sidebar (max-width 250px + 12px padding) */
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.hamburger-menu.active {
|
|
162
|
+
background: #0ea5e9;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.hamburger-menu::before {
|
|
166
|
+
content: "☰";
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.hamburger-menu.active::before {
|
|
170
|
+
content: "✕";
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
/* Mobile menu overlay */
|
|
174
|
+
.mobile-menu-overlay {
|
|
175
|
+
display: none;
|
|
176
|
+
position: fixed;
|
|
177
|
+
top: 0;
|
|
178
|
+
left: 0;
|
|
179
|
+
right: 0;
|
|
180
|
+
bottom: 0;
|
|
181
|
+
background: rgba(0, 0, 0, 0.5);
|
|
182
|
+
z-index: 150;
|
|
183
|
+
opacity: 0;
|
|
184
|
+
visibility: hidden;
|
|
185
|
+
transition: opacity 0.3s ease, visibility 0.3s ease;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.mobile-menu-overlay.active {
|
|
189
|
+
opacity: 1;
|
|
190
|
+
visibility: visible;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
/* Page TOC */
|
|
194
|
+
.page-toc {
|
|
195
|
+
background: #f9f9f9;
|
|
196
|
+
border: 1px solid #ddd;
|
|
197
|
+
border-radius: 4px;
|
|
198
|
+
padding: 1rem;
|
|
199
|
+
margin: 1.5rem 0;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.page-toc ul {
|
|
203
|
+
list-style: none;
|
|
204
|
+
padding-left: 0;
|
|
205
|
+
margin: 0;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.page-toc > ul {
|
|
209
|
+
padding-left: 0;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.page-toc li {
|
|
213
|
+
margin: 0.25em 0;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.page-toc a {
|
|
217
|
+
color: #0066cc;
|
|
218
|
+
text-decoration: none;
|
|
219
|
+
display: block;
|
|
220
|
+
padding: 0.25em 0.5em;
|
|
221
|
+
border-radius: 3px;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.page-toc a:hover {
|
|
225
|
+
background: #e0e0e0;
|
|
226
|
+
color: #004499;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.page-toc ul ul {
|
|
230
|
+
list-style: none;
|
|
231
|
+
padding-left: 1.5em;
|
|
232
|
+
margin-top: 0.25em;
|
|
233
|
+
margin-left: 0;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.page-toc ul ul ul {
|
|
237
|
+
padding-left: 1.5em;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.page-toc ul ul a {
|
|
241
|
+
font-size: 0.9em;
|
|
242
|
+
color: #555;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.page-toc ul ul ul a {
|
|
246
|
+
font-size: 0.85em;
|
|
247
|
+
color: #666;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
/* Floating TOC */
|
|
251
|
+
.floating-toc {
|
|
252
|
+
position: fixed;
|
|
253
|
+
top: 0;
|
|
254
|
+
left: 270px;
|
|
255
|
+
right: 0;
|
|
256
|
+
z-index: 50;
|
|
257
|
+
opacity: 0;
|
|
258
|
+
visibility: hidden;
|
|
259
|
+
transition: opacity 0.2s ease, visibility 0.2s ease;
|
|
260
|
+
pointer-events: none;
|
|
261
|
+
display: flex;
|
|
262
|
+
justify-content: flex-end;
|
|
263
|
+
padding-right: 2rem;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
.floating-toc.visible {
|
|
267
|
+
opacity: 1;
|
|
268
|
+
visibility: visible;
|
|
269
|
+
pointer-events: auto;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.floating-toc-container {
|
|
273
|
+
background: rgba(255, 255, 255, 0.95);
|
|
274
|
+
backdrop-filter: blur(10px);
|
|
275
|
+
border-bottom: 1px solid #ddd;
|
|
276
|
+
border-radius: 0 0 12px 12px;
|
|
277
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
|
278
|
+
width: fit-content;
|
|
279
|
+
max-width: 400px;
|
|
280
|
+
min-width: 200px;
|
|
281
|
+
overflow: hidden;
|
|
282
|
+
transition: max-height 0.3s ease;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.floating-toc-header {
|
|
286
|
+
padding: 8px 16px;
|
|
287
|
+
cursor: pointer;
|
|
288
|
+
user-select: none;
|
|
289
|
+
font-size: 14px;
|
|
290
|
+
font-weight: 500;
|
|
291
|
+
color: #1e293b;
|
|
292
|
+
display: flex;
|
|
293
|
+
align-items: center;
|
|
294
|
+
justify-content: space-between;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.floating-toc-header:hover {
|
|
298
|
+
background: rgba(0, 0, 0, 0.02);
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.floating-toc-content {
|
|
302
|
+
max-height: 0;
|
|
303
|
+
overflow: hidden;
|
|
304
|
+
transition: max-height 0.3s ease;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
.floating-toc-container:hover .floating-toc-content {
|
|
308
|
+
max-height: 70vh;
|
|
309
|
+
overflow-y: auto;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.floating-toc-content ul {
|
|
313
|
+
list-style: none;
|
|
314
|
+
padding: 8px 16px 16px;
|
|
315
|
+
margin: 0;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
.floating-toc-content li {
|
|
319
|
+
margin: 0.1em 0;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
.floating-toc-content a {
|
|
323
|
+
color: #0066cc;
|
|
324
|
+
text-decoration: none;
|
|
325
|
+
display: block;
|
|
326
|
+
padding: 0.2em 0.5em;
|
|
327
|
+
border-radius: 4px;
|
|
328
|
+
font-size: 13px;
|
|
329
|
+
transition: background 0.15s ease;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.floating-toc-content a:hover {
|
|
333
|
+
background: #e0e0e0;
|
|
334
|
+
color: #004499;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
.floating-toc-content ul ul {
|
|
338
|
+
padding-left: 1.2em;
|
|
339
|
+
margin-top: 0;
|
|
340
|
+
margin-bottom: 0;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
.floating-toc-content ul ul ul {
|
|
344
|
+
margin-top: 0;
|
|
345
|
+
margin-bottom: 0;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.floating-toc-content ul ul a {
|
|
349
|
+
font-size: 12px;
|
|
350
|
+
color: #555;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
.floating-toc-content ul ul ul a {
|
|
354
|
+
font-size: 11px;
|
|
355
|
+
color: #666;
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
/* Smooth scrolling */
|
|
359
|
+
html {
|
|
360
|
+
scroll-behavior: smooth;
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
/* Code blocks */
|
|
364
|
+
code {
|
|
365
|
+
background: #f0f0f0;
|
|
366
|
+
padding: 0.2em 0.4em;
|
|
367
|
+
border-radius: 3px;
|
|
368
|
+
font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
|
|
369
|
+
font-size: 0.9em;
|
|
370
|
+
margin: 0 0.1em;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
pre {
|
|
374
|
+
background: #f5f5f5;
|
|
375
|
+
padding: 1rem;
|
|
376
|
+
overflow-x: auto;
|
|
377
|
+
border-radius: 4px;
|
|
378
|
+
margin: 1em 0;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
pre code {
|
|
382
|
+
background: none;
|
|
383
|
+
padding: 0;
|
|
384
|
+
margin: 0;
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
/* Rouge syntax highlighting - GitHub theme, scoped to .highlight containers */
|
|
388
|
+
.highlight {
|
|
389
|
+
color: #24292e;
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
.highlight .c {
|
|
393
|
+
color: #6a737d;
|
|
394
|
+
font-style: italic;
|
|
395
|
+
} /* Comment */
|
|
396
|
+
.highlight .err {
|
|
397
|
+
color: #a61717;
|
|
398
|
+
background-color: #e3d2d2;
|
|
399
|
+
} /* Error */
|
|
400
|
+
.highlight .k {
|
|
401
|
+
color: #d73a49;
|
|
402
|
+
font-weight: bold;
|
|
403
|
+
} /* Keyword */
|
|
404
|
+
.highlight .l {
|
|
405
|
+
color: #032f62;
|
|
406
|
+
} /* Literal */
|
|
407
|
+
.highlight .n {
|
|
408
|
+
color: #24292e;
|
|
409
|
+
} /* Name */
|
|
410
|
+
.highlight .o {
|
|
411
|
+
color: #d73a49;
|
|
412
|
+
} /* Operator */
|
|
413
|
+
.highlight .p {
|
|
414
|
+
color: #24292e;
|
|
415
|
+
} /* Punctuation */
|
|
416
|
+
.highlight .cm {
|
|
417
|
+
color: #6a737d;
|
|
418
|
+
font-style: italic;
|
|
419
|
+
} /* Comment.Multiline */
|
|
420
|
+
.highlight .cp {
|
|
421
|
+
color: #6a737d;
|
|
422
|
+
font-weight: bold;
|
|
423
|
+
} /* Comment.Preproc */
|
|
424
|
+
.highlight .c1 {
|
|
425
|
+
color: #6a737d;
|
|
426
|
+
font-style: italic;
|
|
427
|
+
} /* Comment.Single */
|
|
428
|
+
.highlight .cs {
|
|
429
|
+
color: #6a737d;
|
|
430
|
+
font-weight: bold;
|
|
431
|
+
font-style: italic;
|
|
432
|
+
} /* Comment.Special */
|
|
433
|
+
.highlight .gd {
|
|
434
|
+
color: #24292e;
|
|
435
|
+
background-color: #ffeef0;
|
|
436
|
+
} /* Generic.Deleted */
|
|
437
|
+
.highlight .ge {
|
|
438
|
+
color: #24292e;
|
|
439
|
+
font-style: italic;
|
|
440
|
+
} /* Generic.Emph */
|
|
441
|
+
.highlight .gr {
|
|
442
|
+
color: #aa0000;
|
|
443
|
+
} /* Generic.Error */
|
|
444
|
+
.highlight .gh {
|
|
445
|
+
color: #999999;
|
|
446
|
+
font-weight: bold;
|
|
447
|
+
} /* Generic.Heading */
|
|
448
|
+
.highlight .gi {
|
|
449
|
+
color: #24292e;
|
|
450
|
+
background-color: #f0fff4;
|
|
451
|
+
} /* Generic.Inserted */
|
|
452
|
+
.highlight .go {
|
|
453
|
+
color: #888888;
|
|
454
|
+
} /* Generic.Output */
|
|
455
|
+
.highlight .gp {
|
|
456
|
+
color: #555555;
|
|
457
|
+
} /* Generic.Prompt */
|
|
458
|
+
.highlight .gs {
|
|
459
|
+
font-weight: bold;
|
|
460
|
+
} /* Generic.Strong */
|
|
461
|
+
.highlight .gu {
|
|
462
|
+
color: #aaaaaa;
|
|
463
|
+
} /* Generic.Subheading */
|
|
464
|
+
.highlight .gt {
|
|
465
|
+
color: #aa0000;
|
|
466
|
+
} /* Generic.Traceback */
|
|
467
|
+
.highlight .kc {
|
|
468
|
+
color: #d73a49;
|
|
469
|
+
font-weight: bold;
|
|
470
|
+
} /* Keyword.Constant */
|
|
471
|
+
.highlight .kd {
|
|
472
|
+
color: #d73a49;
|
|
473
|
+
font-weight: bold;
|
|
474
|
+
} /* Keyword.Declaration */
|
|
475
|
+
.highlight .kn {
|
|
476
|
+
color: #d73a49;
|
|
477
|
+
font-weight: bold;
|
|
478
|
+
} /* Keyword.Namespace */
|
|
479
|
+
.highlight .kp {
|
|
480
|
+
color: #d73a49;
|
|
481
|
+
font-weight: bold;
|
|
482
|
+
} /* Keyword.Pseudo */
|
|
483
|
+
.highlight .kr {
|
|
484
|
+
color: #d73a49;
|
|
485
|
+
font-weight: bold;
|
|
486
|
+
} /* Keyword.Reserved */
|
|
487
|
+
.highlight .kt {
|
|
488
|
+
color: #d73a49;
|
|
489
|
+
font-weight: bold;
|
|
490
|
+
} /* Keyword.Type */
|
|
491
|
+
.highlight .ld {
|
|
492
|
+
color: #032f62;
|
|
493
|
+
} /* Literal.Date */
|
|
494
|
+
.highlight .m {
|
|
495
|
+
color: #005cc5;
|
|
496
|
+
} /* Literal.Number */
|
|
497
|
+
.highlight .s {
|
|
498
|
+
color: #032f62;
|
|
499
|
+
} /* Literal.String */
|
|
500
|
+
.highlight .na {
|
|
501
|
+
color: #6f42c1;
|
|
502
|
+
} /* Name.Attribute */
|
|
503
|
+
.highlight .nb {
|
|
504
|
+
color: #005cc5;
|
|
505
|
+
} /* Name.Builtin */
|
|
506
|
+
.highlight .nc {
|
|
507
|
+
color: #6f42c1;
|
|
508
|
+
font-weight: bold;
|
|
509
|
+
} /* Name.Class */
|
|
510
|
+
.highlight .no {
|
|
511
|
+
color: #005cc5;
|
|
512
|
+
} /* Name.Constant */
|
|
513
|
+
.highlight .nd {
|
|
514
|
+
color: #6f42c1;
|
|
515
|
+
font-weight: bold;
|
|
516
|
+
} /* Name.Decorator */
|
|
517
|
+
.highlight .ni {
|
|
518
|
+
color: #800080;
|
|
519
|
+
} /* Name.Entity */
|
|
520
|
+
.highlight .ne {
|
|
521
|
+
color: #990000;
|
|
522
|
+
font-weight: bold;
|
|
523
|
+
} /* Name.Exception */
|
|
524
|
+
.highlight .nf {
|
|
525
|
+
color: #6f42c1;
|
|
526
|
+
} /* Name.Function */
|
|
527
|
+
.highlight .nl {
|
|
528
|
+
color: #990000;
|
|
529
|
+
} /* Name.Label */
|
|
530
|
+
.highlight .nn {
|
|
531
|
+
color: #555555;
|
|
532
|
+
} /* Name.Namespace */
|
|
533
|
+
.highlight .nx {
|
|
534
|
+
color: #6f42c1;
|
|
535
|
+
} /* Name.Other */
|
|
536
|
+
.highlight .py {
|
|
537
|
+
color: #990000;
|
|
538
|
+
} /* Name.Property */
|
|
539
|
+
.highlight .nt {
|
|
540
|
+
color: #22863a;
|
|
541
|
+
} /* Name.Tag */
|
|
542
|
+
.highlight .nv {
|
|
543
|
+
color: #e36209;
|
|
544
|
+
} /* Name.Variable */
|
|
545
|
+
.highlight .ow {
|
|
546
|
+
color: #d73a49;
|
|
547
|
+
font-weight: bold;
|
|
548
|
+
} /* Operator.Word */
|
|
549
|
+
.highlight .w {
|
|
550
|
+
color: #bbbbbb;
|
|
551
|
+
} /* Text.Whitespace */
|
|
552
|
+
.highlight .mf {
|
|
553
|
+
color: #005cc5;
|
|
554
|
+
} /* Literal.Number.Float */
|
|
555
|
+
.highlight .mh {
|
|
556
|
+
color: #005cc5;
|
|
557
|
+
} /* Literal.Number.Hex */
|
|
558
|
+
.highlight .mi {
|
|
559
|
+
color: #005cc5;
|
|
560
|
+
} /* Literal.Number.Integer */
|
|
561
|
+
.highlight .mo {
|
|
562
|
+
color: #005cc5;
|
|
563
|
+
} /* Literal.Number.Oct */
|
|
564
|
+
.highlight .sb {
|
|
565
|
+
color: #032f62;
|
|
566
|
+
} /* Literal.String.Backtick */
|
|
567
|
+
.highlight .sc {
|
|
568
|
+
color: #032f62;
|
|
569
|
+
} /* Literal.String.Char */
|
|
570
|
+
.highlight .sd {
|
|
571
|
+
color: #032f62;
|
|
572
|
+
} /* Literal.String.Doc */
|
|
573
|
+
.highlight .s2 {
|
|
574
|
+
color: #032f62;
|
|
575
|
+
} /* Literal.String.Double */
|
|
576
|
+
.highlight .se {
|
|
577
|
+
color: #032f62;
|
|
578
|
+
} /* Literal.String.Escape */
|
|
579
|
+
.highlight .sh {
|
|
580
|
+
color: #032f62;
|
|
581
|
+
} /* Literal.String.Heredoc */
|
|
582
|
+
.highlight .si {
|
|
583
|
+
color: #032f62;
|
|
584
|
+
} /* Literal.String.Interpol */
|
|
585
|
+
.highlight .sx {
|
|
586
|
+
color: #032f62;
|
|
587
|
+
} /* Literal.String.Other */
|
|
588
|
+
.highlight .sr {
|
|
589
|
+
color: #22863a;
|
|
590
|
+
} /* Literal.String.Regex */
|
|
591
|
+
.highlight .s1 {
|
|
592
|
+
color: #032f62;
|
|
593
|
+
} /* Literal.String.Single */
|
|
594
|
+
.highlight .ss {
|
|
595
|
+
color: #032f62;
|
|
596
|
+
} /* Literal.String.Symbol */
|
|
597
|
+
.highlight .bp {
|
|
598
|
+
color: #005cc5;
|
|
599
|
+
} /* Name.Builtin.Pseudo */
|
|
600
|
+
.highlight .vc {
|
|
601
|
+
color: #e36209;
|
|
602
|
+
} /* Name.Variable.Class */
|
|
603
|
+
.highlight .vg {
|
|
604
|
+
color: #e36209;
|
|
605
|
+
} /* Name.Variable.Global */
|
|
606
|
+
.highlight .vi {
|
|
607
|
+
color: #e36209;
|
|
608
|
+
} /* Name.Variable.Instance */
|
|
609
|
+
.highlight .il {
|
|
610
|
+
color: #005cc5;
|
|
611
|
+
} /* Literal.Number.Integer.Long */
|
|
612
|
+
|
|
613
|
+
/* Additional Rouge token classes that may be used */
|
|
614
|
+
.highlight .token {
|
|
615
|
+
color: #5670a0;
|
|
616
|
+
}
|
|
617
|
+
.highlight .token.list {
|
|
618
|
+
color: #546e9f;
|
|
619
|
+
}
|
|
620
|
+
.highlight .token.punctuation {
|
|
621
|
+
color: #3e8dad;
|
|
622
|
+
}
|
|
623
|
+
.highlight .token.list.punctuation {
|
|
624
|
+
color: #e05b78;
|
|
625
|
+
}
|
|
626
|
+
.highlight .token.content {
|
|
627
|
+
padding: 0;
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
/* Nested lists in page content */
|
|
631
|
+
ul ul,
|
|
632
|
+
ol ol,
|
|
633
|
+
ul ol,
|
|
634
|
+
ol ul {
|
|
635
|
+
padding-left: 1.5em;
|
|
636
|
+
margin-top: 0.25em;
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
/* Page footer */
|
|
640
|
+
.page-footer {
|
|
641
|
+
background: #f5f5f5;
|
|
642
|
+
border-top: 1px solid #ddd;
|
|
643
|
+
padding: 1.5rem;
|
|
644
|
+
margin-top: 3rem;
|
|
645
|
+
color: #666;
|
|
646
|
+
font-size: 0.9em;
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
.page-footer p {
|
|
650
|
+
margin: 0.5em 0;
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
.page-footer a {
|
|
654
|
+
color: #0066cc;
|
|
655
|
+
text-decoration: none;
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
.page-footer a:hover {
|
|
659
|
+
text-decoration: underline;
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
/* Mobile responsive */
|
|
663
|
+
@media (max-width: 768px) {
|
|
664
|
+
.hamburger-menu {
|
|
665
|
+
display: flex;
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
.main-toc,
|
|
669
|
+
.sidebar {
|
|
670
|
+
transform: translateX(-100%);
|
|
671
|
+
z-index: 175;
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
.main-toc.mobile-open,
|
|
675
|
+
.sidebar.mobile-open {
|
|
676
|
+
transform: translateX(0);
|
|
677
|
+
}
|
|
678
|
+
|
|
679
|
+
body {
|
|
680
|
+
margin-left: 0;
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
.floating-toc {
|
|
684
|
+
left: 0;
|
|
685
|
+
}
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
</style></head>
|
|
689
|
+
|
|
690
|
+
<body>
|
|
691
|
+
<div class="floating-toc" id="floating-toc">
|
|
692
|
+
<div class="floating-toc-container">
|
|
693
|
+
<div class="floating-toc-header">
|
|
694
|
+
<span>Table of Contents 🔻</span>
|
|
695
|
+
</div>
|
|
696
|
+
<div class="floating-toc-content" id="floating-toc-content">
|
|
697
|
+
<!-- Content will be populated by JavaScript -->
|
|
698
|
+
</div>
|
|
699
|
+
</div>
|
|
700
|
+
</div>
|
|
701
|
+
|
|
702
|
+
<button class="hamburger-menu" id="hamburger-menu" aria-label="Toggle navigation"></button>
|
|
703
|
+
<div class="mobile-menu-overlay" id="mobile-menu-overlay"></div>
|
|
704
|
+
|
|
705
|
+
<nav class="main-toc"><ul><li><a href="Home.html">Home</a></li><li><a href="Getting-Started.html">Getting Started</a></li><li><a href="Installation.html">Installation</a></li><li><a href="Usage.html">Usage</a></li><li><a href="Syntax.html">Syntax</a></li><li><a href="Inline-Attribute-Lists.html">Inline Attribute Lists</a></li><li><a href="Modes.html">Modes</a></li><li><a href="Command-Line-Options.html">Command Line Options</a></li><li><a href="Multi-File-Documents.html">Multi-file Documents</a></li><li><a href="Citations.html">Citations</a></li><li><a href="Metadata-Transforms.html">Metadata Transforms</a></li><li><a href="Pandoc-Integration.html">Integrating with Pandoc</a></li><li><a href="Header-IDs.html">Header IDs</a></li><li><a href="C-API.html">C API</a></li><li><a href="Xcode-Integration.html">Xcode Integration</a></li><li><a href="Examples.html">Examples</a></li><li><a href="Plugins.html">Plugins</a></li><li><a href="Troubleshooting.html">Troubleshooting</a></li><li><a href="Credits.html">Credits</a></li></ul></nav>
|
|
706
|
+
|
|
707
|
+
<h1 id="processor-modes">
|
|
708
|
+
Processor Modes
|
|
709
|
+
</h1>
|
|
710
|
+
<nav class="page-toc" id="page-toc-top"><ul><li><a href="#processor-modes">Processor Modes</a><ul><li><a href="#overview">Overview</a></li><li><a href="#unified-mode-default">Unified Mode (Default)</a><ul><li><a href="#enabled-features">Enabled Features</a></li><li><a href="#id-format">ID Format</a></li></ul></li><li><a href="#gfm-mode">GFM Mode</a><ul><li><a href="#enabled-features">Enabled Features</a></li><li><a href="#disabled-features">Disabled Features</a></li><li><a href="#id-format">ID Format</a></li></ul></li><li><a href="#multimarkdown-mode">MultiMarkdown Mode</a><ul><li><a href="#enabled-features">Enabled Features</a></li><li><a href="#disabled-features">Disabled Features</a></li><li><a href="#id-format">ID Format</a></li></ul></li><li><a href="#kramdown-mode">Kramdown Mode</a><ul><li><a href="#enabled-features">Enabled Features</a></li><li><a href="#disabled-features">Disabled Features</a></li><li><a href="#id-format">ID Format</a></li></ul></li><li><a href="#commonmark-mode">CommonMark Mode</a><ul><li><a href="#enabled-features">Enabled Features</a></li><li><a href="#disabled-features">Disabled Features</a></li><li><a href="#id-format">ID Format</a></li></ul></li><li><a href="#feature-comparison-table">Feature Comparison Table</a></li><li><a href="#choosing-a-mode">Choosing a Mode</a></li><li><a href="#overriding-mode-defaults">Overriding Mode Defaults</a></li><li><a href="#related">Related</a></li></ul></li></ul></nav>
|
|
711
|
+
|
|
712
|
+
<p>
|
|
713
|
+
Apex supports multiple processor modes, each optimized for compatibility with different Markdown flavors.
|
|
714
|
+
</p>
|
|
715
|
+
|
|
716
|
+
<h2 id="overview">
|
|
717
|
+
Overview
|
|
718
|
+
</h2>
|
|
719
|
+
|
|
720
|
+
<table>
|
|
721
|
+
|
|
722
|
+
<thead>
|
|
723
|
+
|
|
724
|
+
<tr>
|
|
725
|
+
|
|
726
|
+
<th>
|
|
727
|
+
Mode
|
|
728
|
+
</th>
|
|
729
|
+
|
|
730
|
+
<th>
|
|
731
|
+
Description
|
|
732
|
+
</th>
|
|
733
|
+
|
|
734
|
+
<th>
|
|
735
|
+
Default ID Format
|
|
736
|
+
</th>
|
|
737
|
+
|
|
738
|
+
</tr>
|
|
739
|
+
|
|
740
|
+
</thead>
|
|
741
|
+
|
|
742
|
+
<tbody>
|
|
743
|
+
|
|
744
|
+
<tr>
|
|
745
|
+
|
|
746
|
+
<td>
|
|
747
|
+
<code>unified</code>
|
|
748
|
+
</td>
|
|
749
|
+
|
|
750
|
+
<td>
|
|
751
|
+
All features enabled
|
|
752
|
+
</td>
|
|
753
|
+
|
|
754
|
+
<td>
|
|
755
|
+
GFM
|
|
756
|
+
</td>
|
|
757
|
+
|
|
758
|
+
</tr>
|
|
759
|
+
<tr>
|
|
760
|
+
|
|
761
|
+
<td>
|
|
762
|
+
<code>gfm</code>
|
|
763
|
+
</td>
|
|
764
|
+
|
|
765
|
+
<td>
|
|
766
|
+
GitHub Flavored Markdown
|
|
767
|
+
</td>
|
|
768
|
+
|
|
769
|
+
<td>
|
|
770
|
+
GFM
|
|
771
|
+
</td>
|
|
772
|
+
|
|
773
|
+
</tr>
|
|
774
|
+
<tr>
|
|
775
|
+
|
|
776
|
+
<td>
|
|
777
|
+
<code>mmd</code>
|
|
778
|
+
</td>
|
|
779
|
+
|
|
780
|
+
<td>
|
|
781
|
+
MultiMarkdown compatibility
|
|
782
|
+
</td>
|
|
783
|
+
|
|
784
|
+
<td>
|
|
785
|
+
MultiMarkdown
|
|
786
|
+
</td>
|
|
787
|
+
|
|
788
|
+
</tr>
|
|
789
|
+
<tr>
|
|
790
|
+
|
|
791
|
+
<td>
|
|
792
|
+
<code>kramdown</code>
|
|
793
|
+
</td>
|
|
794
|
+
|
|
795
|
+
<td>
|
|
796
|
+
Kramdown compatibility
|
|
797
|
+
</td>
|
|
798
|
+
|
|
799
|
+
<td>
|
|
800
|
+
Kramdown
|
|
801
|
+
</td>
|
|
802
|
+
|
|
803
|
+
</tr>
|
|
804
|
+
<tr>
|
|
805
|
+
|
|
806
|
+
<td>
|
|
807
|
+
<code>commonmark</code>
|
|
808
|
+
</td>
|
|
809
|
+
|
|
810
|
+
<td>
|
|
811
|
+
Pure CommonMark spec
|
|
812
|
+
</td>
|
|
813
|
+
|
|
814
|
+
<td>
|
|
815
|
+
GFM
|
|
816
|
+
</td>
|
|
817
|
+
|
|
818
|
+
</tr>
|
|
819
|
+
</tbody>
|
|
820
|
+
|
|
821
|
+
</table>
|
|
822
|
+
|
|
823
|
+
<h2 id="unified-mode-default">
|
|
824
|
+
Unified Mode (Default)
|
|
825
|
+
</h2>
|
|
826
|
+
|
|
827
|
+
<p>
|
|
828
|
+
<strong> Command:</strong> <code>apex document.md</code> or <code>apex --mode unified document.md</code>
|
|
829
|
+
</p>
|
|
830
|
+
|
|
831
|
+
<p>
|
|
832
|
+
Unified mode enables all features from all other modes. This is the default mode.
|
|
833
|
+
</p>
|
|
834
|
+
|
|
835
|
+
<h3 id="enabled-features">
|
|
836
|
+
Enabled Features
|
|
837
|
+
</h3>
|
|
838
|
+
|
|
839
|
+
<ul>
|
|
840
|
+
|
|
841
|
+
<li>
|
|
842
|
+
✅ Tables (GFM style)
|
|
843
|
+
</li>
|
|
844
|
+
|
|
845
|
+
<li>
|
|
846
|
+
✅ Strikethrough (<code>~~text~~</code>)
|
|
847
|
+
</li>
|
|
848
|
+
|
|
849
|
+
<li>
|
|
850
|
+
✅ Task lists (<code>- [ ]</code> and <code>- [x]</code>)
|
|
851
|
+
</li>
|
|
852
|
+
|
|
853
|
+
<li>
|
|
854
|
+
✅ Autolinks (URLs and emails)
|
|
855
|
+
</li>
|
|
856
|
+
|
|
857
|
+
<li>
|
|
858
|
+
✅ Footnotes (reference and inline styles)
|
|
859
|
+
</li>
|
|
860
|
+
|
|
861
|
+
<li>
|
|
862
|
+
✅ Definition lists
|
|
863
|
+
</li>
|
|
864
|
+
|
|
865
|
+
<li>
|
|
866
|
+
✅ Smart typography
|
|
867
|
+
</li>
|
|
868
|
+
|
|
869
|
+
<li>
|
|
870
|
+
✅ Math support (<code>$inline$</code> and <code>$$display$$</code>)
|
|
871
|
+
</li>
|
|
872
|
+
|
|
873
|
+
<li>
|
|
874
|
+
✅ Wiki links (<code>[[Page]]</code>) - <strong>Requires <code>--wikilinks</code> flag</strong> (disabled by default)
|
|
875
|
+
</li>
|
|
876
|
+
|
|
877
|
+
<li>
|
|
878
|
+
✅ Critic Markup
|
|
879
|
+
</li>
|
|
880
|
+
|
|
881
|
+
<li>
|
|
882
|
+
✅ Callouts
|
|
883
|
+
</li>
|
|
884
|
+
|
|
885
|
+
<li>
|
|
886
|
+
✅ File includes
|
|
887
|
+
</li>
|
|
888
|
+
|
|
889
|
+
<li>
|
|
890
|
+
✅ Metadata blocks (YAML, MMD, Pandoc)
|
|
891
|
+
</li>
|
|
892
|
+
|
|
893
|
+
<li>
|
|
894
|
+
✅ Metadata variables (<code>[%key]</code>) - See <a href="Metadata-Transforms.html">Metadata Transforms</a> for transform syntax - See <a href="Metadata-Transforms.html">Metadata Transforms</a> for transform syntax
|
|
895
|
+
</li>
|
|
896
|
+
|
|
897
|
+
<li>
|
|
898
|
+
✅ Abbreviations
|
|
899
|
+
</li>
|
|
900
|
+
|
|
901
|
+
<li>
|
|
902
|
+
✅ Inline Attribute Lists (IAL)
|
|
903
|
+
</li>
|
|
904
|
+
|
|
905
|
+
<li>
|
|
906
|
+
✅ Relaxed tables (default)
|
|
907
|
+
</li>
|
|
908
|
+
|
|
909
|
+
<li>
|
|
910
|
+
✅ GitHub Emoji (<code>:emoji_name:</code>)
|
|
911
|
+
</li>
|
|
912
|
+
|
|
913
|
+
</ul>
|
|
914
|
+
|
|
915
|
+
<h3 id="id-format">
|
|
916
|
+
ID Format
|
|
917
|
+
</h3>
|
|
918
|
+
|
|
919
|
+
<ul>
|
|
920
|
+
|
|
921
|
+
<li>
|
|
922
|
+
Default: GFM format
|
|
923
|
+
</li>
|
|
924
|
+
|
|
925
|
+
<li>
|
|
926
|
+
Can be overridden with <code>--id-format</code>
|
|
927
|
+
</li>
|
|
928
|
+
|
|
929
|
+
</ul>
|
|
930
|
+
|
|
931
|
+
<h2 id="gfm-mode">
|
|
932
|
+
GFM Mode
|
|
933
|
+
</h2>
|
|
934
|
+
|
|
935
|
+
<p>
|
|
936
|
+
<strong> Command:</strong> <code>apex --mode gfm document.md</code>
|
|
937
|
+
</p>
|
|
938
|
+
|
|
939
|
+
<p>
|
|
940
|
+
GitHub Flavored Markdown compatibility mode.
|
|
941
|
+
</p>
|
|
942
|
+
|
|
943
|
+
<h3 id="enabled-features">
|
|
944
|
+
Enabled Features
|
|
945
|
+
</h3>
|
|
946
|
+
|
|
947
|
+
<ul>
|
|
948
|
+
|
|
949
|
+
<li>
|
|
950
|
+
✅ Tables
|
|
951
|
+
</li>
|
|
952
|
+
|
|
953
|
+
<li>
|
|
954
|
+
✅ Strikethrough
|
|
955
|
+
</li>
|
|
956
|
+
|
|
957
|
+
<li>
|
|
958
|
+
✅ Task lists
|
|
959
|
+
</li>
|
|
960
|
+
|
|
961
|
+
<li>
|
|
962
|
+
✅ Autolinks
|
|
963
|
+
</li>
|
|
964
|
+
|
|
965
|
+
<li>
|
|
966
|
+
✅ Hard line breaks (newlines become <code><br></code>)
|
|
967
|
+
</li>
|
|
968
|
+
|
|
969
|
+
</ul>
|
|
970
|
+
|
|
971
|
+
<h3 id="disabled-features">
|
|
972
|
+
Disabled Features
|
|
973
|
+
</h3>
|
|
974
|
+
|
|
975
|
+
<ul>
|
|
976
|
+
|
|
977
|
+
<li>
|
|
978
|
+
❌ Footnotes
|
|
979
|
+
</li>
|
|
980
|
+
|
|
981
|
+
<li>
|
|
982
|
+
❌ Definition lists
|
|
983
|
+
</li>
|
|
984
|
+
|
|
985
|
+
<li>
|
|
986
|
+
❌ Smart typography
|
|
987
|
+
</li>
|
|
988
|
+
|
|
989
|
+
<li>
|
|
990
|
+
❌ Math
|
|
991
|
+
</li>
|
|
992
|
+
|
|
993
|
+
<li>
|
|
994
|
+
❌ Wiki links
|
|
995
|
+
</li>
|
|
996
|
+
|
|
997
|
+
<li>
|
|
998
|
+
❌ Critic Markup
|
|
999
|
+
</li>
|
|
1000
|
+
|
|
1001
|
+
<li>
|
|
1002
|
+
❌ Callouts
|
|
1003
|
+
</li>
|
|
1004
|
+
|
|
1005
|
+
<li>
|
|
1006
|
+
❌ File includes
|
|
1007
|
+
</li>
|
|
1008
|
+
|
|
1009
|
+
<li>
|
|
1010
|
+
❌ Metadata
|
|
1011
|
+
</li>
|
|
1012
|
+
|
|
1013
|
+
<li>
|
|
1014
|
+
❌ Abbreviations
|
|
1015
|
+
</li>
|
|
1016
|
+
|
|
1017
|
+
<li>
|
|
1018
|
+
❌ IAL
|
|
1019
|
+
</li>
|
|
1020
|
+
|
|
1021
|
+
<li>
|
|
1022
|
+
❌ Relaxed tables
|
|
1023
|
+
</li>
|
|
1024
|
+
|
|
1025
|
+
</ul>
|
|
1026
|
+
|
|
1027
|
+
<h3 id="id-format">
|
|
1028
|
+
ID Format
|
|
1029
|
+
</h3>
|
|
1030
|
+
|
|
1031
|
+
<ul>
|
|
1032
|
+
|
|
1033
|
+
<li>
|
|
1034
|
+
GFM format (cannot be changed)
|
|
1035
|
+
</li>
|
|
1036
|
+
|
|
1037
|
+
</ul>
|
|
1038
|
+
|
|
1039
|
+
<h2 id="multimarkdown-mode">
|
|
1040
|
+
MultiMarkdown Mode
|
|
1041
|
+
</h2>
|
|
1042
|
+
|
|
1043
|
+
<p>
|
|
1044
|
+
<strong> Command:</strong> <code>apex --mode mmd document.md</code> or <code>apex --mode multimarkdown document.md</code>
|
|
1045
|
+
</p>
|
|
1046
|
+
|
|
1047
|
+
<p>
|
|
1048
|
+
MultiMarkdown compatibility mode.
|
|
1049
|
+
</p>
|
|
1050
|
+
|
|
1051
|
+
<h3 id="enabled-features">
|
|
1052
|
+
Enabled Features
|
|
1053
|
+
</h3>
|
|
1054
|
+
|
|
1055
|
+
<ul>
|
|
1056
|
+
|
|
1057
|
+
<li>
|
|
1058
|
+
✅ Tables
|
|
1059
|
+
</li>
|
|
1060
|
+
|
|
1061
|
+
<li>
|
|
1062
|
+
✅ Footnotes (reference style)
|
|
1063
|
+
</li>
|
|
1064
|
+
|
|
1065
|
+
<li>
|
|
1066
|
+
✅ Definition lists
|
|
1067
|
+
</li>
|
|
1068
|
+
|
|
1069
|
+
<li>
|
|
1070
|
+
✅ Smart typography
|
|
1071
|
+
</li>
|
|
1072
|
+
|
|
1073
|
+
<li>
|
|
1074
|
+
✅ Math support
|
|
1075
|
+
</li>
|
|
1076
|
+
|
|
1077
|
+
<li>
|
|
1078
|
+
✅ Metadata blocks (YAML, MMD, Pandoc)
|
|
1079
|
+
</li>
|
|
1080
|
+
|
|
1081
|
+
<li>
|
|
1082
|
+
✅ Metadata variables (<code>[%key]</code>) - See <a href="Metadata-Transforms.html">Metadata Transforms</a> for transform syntax
|
|
1083
|
+
</li>
|
|
1084
|
+
|
|
1085
|
+
<li>
|
|
1086
|
+
✅ Abbreviations
|
|
1087
|
+
</li>
|
|
1088
|
+
|
|
1089
|
+
<li>
|
|
1090
|
+
✅ File includes
|
|
1091
|
+
</li>
|
|
1092
|
+
|
|
1093
|
+
</ul>
|
|
1094
|
+
|
|
1095
|
+
<h3 id="disabled-features">
|
|
1096
|
+
Disabled Features
|
|
1097
|
+
</h3>
|
|
1098
|
+
|
|
1099
|
+
<ul>
|
|
1100
|
+
|
|
1101
|
+
<li>
|
|
1102
|
+
❌ Strikethrough
|
|
1103
|
+
</li>
|
|
1104
|
+
|
|
1105
|
+
<li>
|
|
1106
|
+
❌ Task lists
|
|
1107
|
+
</li>
|
|
1108
|
+
|
|
1109
|
+
<li>
|
|
1110
|
+
❌ Wiki links
|
|
1111
|
+
</li>
|
|
1112
|
+
|
|
1113
|
+
<li>
|
|
1114
|
+
❌ Critic Markup
|
|
1115
|
+
</li>
|
|
1116
|
+
|
|
1117
|
+
<li>
|
|
1118
|
+
❌ Callouts
|
|
1119
|
+
</li>
|
|
1120
|
+
|
|
1121
|
+
<li>
|
|
1122
|
+
❌ IAL
|
|
1123
|
+
</li>
|
|
1124
|
+
|
|
1125
|
+
<li>
|
|
1126
|
+
❌ Relaxed tables
|
|
1127
|
+
</li>
|
|
1128
|
+
|
|
1129
|
+
</ul>
|
|
1130
|
+
|
|
1131
|
+
<h3 id="id-format">
|
|
1132
|
+
ID Format
|
|
1133
|
+
</h3>
|
|
1134
|
+
|
|
1135
|
+
<ul>
|
|
1136
|
+
|
|
1137
|
+
<li>
|
|
1138
|
+
MultiMarkdown format (cannot be changed)
|
|
1139
|
+
</li>
|
|
1140
|
+
|
|
1141
|
+
</ul>
|
|
1142
|
+
|
|
1143
|
+
<h2 id="kramdown-mode">
|
|
1144
|
+
Kramdown Mode
|
|
1145
|
+
</h2>
|
|
1146
|
+
|
|
1147
|
+
<p>
|
|
1148
|
+
<strong> Command:</strong> <code>apex --mode kramdown document.md</code>
|
|
1149
|
+
</p>
|
|
1150
|
+
|
|
1151
|
+
<p>
|
|
1152
|
+
Kramdown compatibility mode.
|
|
1153
|
+
</p>
|
|
1154
|
+
|
|
1155
|
+
<h3 id="enabled-features">
|
|
1156
|
+
Enabled Features
|
|
1157
|
+
</h3>
|
|
1158
|
+
|
|
1159
|
+
<ul>
|
|
1160
|
+
|
|
1161
|
+
<li>
|
|
1162
|
+
✅ Tables
|
|
1163
|
+
</li>
|
|
1164
|
+
|
|
1165
|
+
<li>
|
|
1166
|
+
✅ Footnotes (reference and inline styles)
|
|
1167
|
+
</li>
|
|
1168
|
+
|
|
1169
|
+
<li>
|
|
1170
|
+
✅ Definition lists
|
|
1171
|
+
</li>
|
|
1172
|
+
|
|
1173
|
+
<li>
|
|
1174
|
+
✅ Smart typography
|
|
1175
|
+
</li>
|
|
1176
|
+
|
|
1177
|
+
<li>
|
|
1178
|
+
✅ Math support
|
|
1179
|
+
</li>
|
|
1180
|
+
|
|
1181
|
+
<li>
|
|
1182
|
+
✅ Inline Attribute Lists (IAL)
|
|
1183
|
+
</li>
|
|
1184
|
+
|
|
1185
|
+
<li>
|
|
1186
|
+
✅ Abbreviations
|
|
1187
|
+
</li>
|
|
1188
|
+
|
|
1189
|
+
<li>
|
|
1190
|
+
✅ Relaxed tables (default)
|
|
1191
|
+
</li>
|
|
1192
|
+
|
|
1193
|
+
</ul>
|
|
1194
|
+
|
|
1195
|
+
<h3 id="disabled-features">
|
|
1196
|
+
Disabled Features
|
|
1197
|
+
</h3>
|
|
1198
|
+
|
|
1199
|
+
<ul>
|
|
1200
|
+
|
|
1201
|
+
<li>
|
|
1202
|
+
❌ Strikethrough
|
|
1203
|
+
</li>
|
|
1204
|
+
|
|
1205
|
+
<li>
|
|
1206
|
+
❌ Task lists
|
|
1207
|
+
</li>
|
|
1208
|
+
|
|
1209
|
+
<li>
|
|
1210
|
+
❌ Wiki links
|
|
1211
|
+
</li>
|
|
1212
|
+
|
|
1213
|
+
<li>
|
|
1214
|
+
❌ Critic Markup
|
|
1215
|
+
</li>
|
|
1216
|
+
|
|
1217
|
+
<li>
|
|
1218
|
+
❌ Callouts
|
|
1219
|
+
</li>
|
|
1220
|
+
|
|
1221
|
+
<li>
|
|
1222
|
+
❌ File includes
|
|
1223
|
+
</li>
|
|
1224
|
+
|
|
1225
|
+
<li>
|
|
1226
|
+
❌ Metadata
|
|
1227
|
+
</li>
|
|
1228
|
+
|
|
1229
|
+
<li>
|
|
1230
|
+
❌ Autolinks
|
|
1231
|
+
</li>
|
|
1232
|
+
|
|
1233
|
+
</ul>
|
|
1234
|
+
|
|
1235
|
+
<h3 id="id-format">
|
|
1236
|
+
ID Format
|
|
1237
|
+
</h3>
|
|
1238
|
+
|
|
1239
|
+
<ul>
|
|
1240
|
+
|
|
1241
|
+
<li>
|
|
1242
|
+
Kramdown format (cannot be changed)
|
|
1243
|
+
</li>
|
|
1244
|
+
|
|
1245
|
+
</ul>
|
|
1246
|
+
|
|
1247
|
+
<h2 id="commonmark-mode">
|
|
1248
|
+
CommonMark Mode
|
|
1249
|
+
</h2>
|
|
1250
|
+
|
|
1251
|
+
<p>
|
|
1252
|
+
<strong> Command:</strong> <code>apex --mode commonmark document.md</code>
|
|
1253
|
+
</p>
|
|
1254
|
+
|
|
1255
|
+
<p>
|
|
1256
|
+
Pure CommonMark specification compliance. No extensions.
|
|
1257
|
+
</p>
|
|
1258
|
+
|
|
1259
|
+
<h3 id="enabled-features">
|
|
1260
|
+
Enabled Features
|
|
1261
|
+
</h3>
|
|
1262
|
+
|
|
1263
|
+
<ul>
|
|
1264
|
+
|
|
1265
|
+
<li>
|
|
1266
|
+
✅ Basic Markdown only (headers, lists, emphasis, links, code, blockquotes, etc.)
|
|
1267
|
+
</li>
|
|
1268
|
+
|
|
1269
|
+
</ul>
|
|
1270
|
+
|
|
1271
|
+
<h3 id="disabled-features">
|
|
1272
|
+
Disabled Features
|
|
1273
|
+
</h3>
|
|
1274
|
+
|
|
1275
|
+
<ul>
|
|
1276
|
+
|
|
1277
|
+
<li>
|
|
1278
|
+
❌ All extensions (tables, footnotes, etc.)
|
|
1279
|
+
</li>
|
|
1280
|
+
|
|
1281
|
+
</ul>
|
|
1282
|
+
|
|
1283
|
+
<h3 id="id-format">
|
|
1284
|
+
ID Format
|
|
1285
|
+
</h3>
|
|
1286
|
+
|
|
1287
|
+
<ul>
|
|
1288
|
+
|
|
1289
|
+
<li>
|
|
1290
|
+
GFM format (for consistency)
|
|
1291
|
+
</li>
|
|
1292
|
+
|
|
1293
|
+
</ul>
|
|
1294
|
+
|
|
1295
|
+
<h2 id="feature-comparison-table">
|
|
1296
|
+
Feature Comparison Table
|
|
1297
|
+
</h2>
|
|
1298
|
+
|
|
1299
|
+
<table>
|
|
1300
|
+
|
|
1301
|
+
<thead>
|
|
1302
|
+
|
|
1303
|
+
<tr>
|
|
1304
|
+
|
|
1305
|
+
<th>
|
|
1306
|
+
Feature
|
|
1307
|
+
</th>
|
|
1308
|
+
|
|
1309
|
+
<th>
|
|
1310
|
+
Unified
|
|
1311
|
+
</th>
|
|
1312
|
+
|
|
1313
|
+
<th>
|
|
1314
|
+
GFM
|
|
1315
|
+
</th>
|
|
1316
|
+
|
|
1317
|
+
<th>
|
|
1318
|
+
MMD
|
|
1319
|
+
</th>
|
|
1320
|
+
|
|
1321
|
+
<th>
|
|
1322
|
+
Kramdown
|
|
1323
|
+
</th>
|
|
1324
|
+
|
|
1325
|
+
<th>
|
|
1326
|
+
CommonMark
|
|
1327
|
+
</th>
|
|
1328
|
+
|
|
1329
|
+
</tr>
|
|
1330
|
+
|
|
1331
|
+
</thead>
|
|
1332
|
+
|
|
1333
|
+
<tbody>
|
|
1334
|
+
|
|
1335
|
+
<tr>
|
|
1336
|
+
|
|
1337
|
+
<td>
|
|
1338
|
+
Tables
|
|
1339
|
+
</td>
|
|
1340
|
+
|
|
1341
|
+
<td>
|
|
1342
|
+
✅
|
|
1343
|
+
</td>
|
|
1344
|
+
|
|
1345
|
+
<td>
|
|
1346
|
+
✅
|
|
1347
|
+
</td>
|
|
1348
|
+
|
|
1349
|
+
<td>
|
|
1350
|
+
✅
|
|
1351
|
+
</td>
|
|
1352
|
+
|
|
1353
|
+
<td>
|
|
1354
|
+
✅
|
|
1355
|
+
</td>
|
|
1356
|
+
|
|
1357
|
+
<td>
|
|
1358
|
+
❌
|
|
1359
|
+
</td>
|
|
1360
|
+
|
|
1361
|
+
</tr>
|
|
1362
|
+
<tr>
|
|
1363
|
+
|
|
1364
|
+
<td>
|
|
1365
|
+
Strikethrough
|
|
1366
|
+
</td>
|
|
1367
|
+
|
|
1368
|
+
<td>
|
|
1369
|
+
✅
|
|
1370
|
+
</td>
|
|
1371
|
+
|
|
1372
|
+
<td>
|
|
1373
|
+
✅
|
|
1374
|
+
</td>
|
|
1375
|
+
|
|
1376
|
+
<td>
|
|
1377
|
+
❌
|
|
1378
|
+
</td>
|
|
1379
|
+
|
|
1380
|
+
<td>
|
|
1381
|
+
❌
|
|
1382
|
+
</td>
|
|
1383
|
+
|
|
1384
|
+
<td>
|
|
1385
|
+
❌
|
|
1386
|
+
</td>
|
|
1387
|
+
|
|
1388
|
+
</tr>
|
|
1389
|
+
<tr>
|
|
1390
|
+
|
|
1391
|
+
<td>
|
|
1392
|
+
Task Lists
|
|
1393
|
+
</td>
|
|
1394
|
+
|
|
1395
|
+
<td>
|
|
1396
|
+
✅
|
|
1397
|
+
</td>
|
|
1398
|
+
|
|
1399
|
+
<td>
|
|
1400
|
+
✅
|
|
1401
|
+
</td>
|
|
1402
|
+
|
|
1403
|
+
<td>
|
|
1404
|
+
❌
|
|
1405
|
+
</td>
|
|
1406
|
+
|
|
1407
|
+
<td>
|
|
1408
|
+
❌
|
|
1409
|
+
</td>
|
|
1410
|
+
|
|
1411
|
+
<td>
|
|
1412
|
+
❌
|
|
1413
|
+
</td>
|
|
1414
|
+
|
|
1415
|
+
</tr>
|
|
1416
|
+
<tr>
|
|
1417
|
+
|
|
1418
|
+
<td>
|
|
1419
|
+
Footnotes
|
|
1420
|
+
</td>
|
|
1421
|
+
|
|
1422
|
+
<td>
|
|
1423
|
+
✅
|
|
1424
|
+
</td>
|
|
1425
|
+
|
|
1426
|
+
<td>
|
|
1427
|
+
❌
|
|
1428
|
+
</td>
|
|
1429
|
+
|
|
1430
|
+
<td>
|
|
1431
|
+
✅
|
|
1432
|
+
</td>
|
|
1433
|
+
|
|
1434
|
+
<td>
|
|
1435
|
+
✅
|
|
1436
|
+
</td>
|
|
1437
|
+
|
|
1438
|
+
<td>
|
|
1439
|
+
❌
|
|
1440
|
+
</td>
|
|
1441
|
+
|
|
1442
|
+
</tr>
|
|
1443
|
+
<tr>
|
|
1444
|
+
|
|
1445
|
+
<td>
|
|
1446
|
+
Definition Lists
|
|
1447
|
+
</td>
|
|
1448
|
+
|
|
1449
|
+
<td>
|
|
1450
|
+
✅
|
|
1451
|
+
</td>
|
|
1452
|
+
|
|
1453
|
+
<td>
|
|
1454
|
+
❌
|
|
1455
|
+
</td>
|
|
1456
|
+
|
|
1457
|
+
<td>
|
|
1458
|
+
✅
|
|
1459
|
+
</td>
|
|
1460
|
+
|
|
1461
|
+
<td>
|
|
1462
|
+
✅
|
|
1463
|
+
</td>
|
|
1464
|
+
|
|
1465
|
+
<td>
|
|
1466
|
+
❌
|
|
1467
|
+
</td>
|
|
1468
|
+
|
|
1469
|
+
</tr>
|
|
1470
|
+
<tr>
|
|
1471
|
+
|
|
1472
|
+
<td>
|
|
1473
|
+
Smart Typography
|
|
1474
|
+
</td>
|
|
1475
|
+
|
|
1476
|
+
<td>
|
|
1477
|
+
✅
|
|
1478
|
+
</td>
|
|
1479
|
+
|
|
1480
|
+
<td>
|
|
1481
|
+
❌
|
|
1482
|
+
</td>
|
|
1483
|
+
|
|
1484
|
+
<td>
|
|
1485
|
+
✅
|
|
1486
|
+
</td>
|
|
1487
|
+
|
|
1488
|
+
<td>
|
|
1489
|
+
✅
|
|
1490
|
+
</td>
|
|
1491
|
+
|
|
1492
|
+
<td>
|
|
1493
|
+
❌
|
|
1494
|
+
</td>
|
|
1495
|
+
|
|
1496
|
+
</tr>
|
|
1497
|
+
<tr>
|
|
1498
|
+
|
|
1499
|
+
<td>
|
|
1500
|
+
Math
|
|
1501
|
+
</td>
|
|
1502
|
+
|
|
1503
|
+
<td>
|
|
1504
|
+
✅
|
|
1505
|
+
</td>
|
|
1506
|
+
|
|
1507
|
+
<td>
|
|
1508
|
+
❌
|
|
1509
|
+
</td>
|
|
1510
|
+
|
|
1511
|
+
<td>
|
|
1512
|
+
✅
|
|
1513
|
+
</td>
|
|
1514
|
+
|
|
1515
|
+
<td>
|
|
1516
|
+
✅
|
|
1517
|
+
</td>
|
|
1518
|
+
|
|
1519
|
+
<td>
|
|
1520
|
+
❌
|
|
1521
|
+
</td>
|
|
1522
|
+
|
|
1523
|
+
</tr>
|
|
1524
|
+
<tr>
|
|
1525
|
+
|
|
1526
|
+
<td>
|
|
1527
|
+
Wiki Links
|
|
1528
|
+
</td>
|
|
1529
|
+
|
|
1530
|
+
<td>
|
|
1531
|
+
✅*
|
|
1532
|
+
</td>
|
|
1533
|
+
|
|
1534
|
+
<td>
|
|
1535
|
+
❌
|
|
1536
|
+
</td>
|
|
1537
|
+
|
|
1538
|
+
<td>
|
|
1539
|
+
❌
|
|
1540
|
+
</td>
|
|
1541
|
+
|
|
1542
|
+
<td>
|
|
1543
|
+
❌
|
|
1544
|
+
</td>
|
|
1545
|
+
|
|
1546
|
+
<td>
|
|
1547
|
+
❌
|
|
1548
|
+
</td>
|
|
1549
|
+
|
|
1550
|
+
</tr>
|
|
1551
|
+
<tr>
|
|
1552
|
+
|
|
1553
|
+
<td>
|
|
1554
|
+
Critic Markup
|
|
1555
|
+
</td>
|
|
1556
|
+
|
|
1557
|
+
<td>
|
|
1558
|
+
✅
|
|
1559
|
+
</td>
|
|
1560
|
+
|
|
1561
|
+
<td>
|
|
1562
|
+
❌
|
|
1563
|
+
</td>
|
|
1564
|
+
|
|
1565
|
+
<td>
|
|
1566
|
+
❌
|
|
1567
|
+
</td>
|
|
1568
|
+
|
|
1569
|
+
<td>
|
|
1570
|
+
❌
|
|
1571
|
+
</td>
|
|
1572
|
+
|
|
1573
|
+
<td>
|
|
1574
|
+
❌
|
|
1575
|
+
</td>
|
|
1576
|
+
|
|
1577
|
+
</tr>
|
|
1578
|
+
<tr>
|
|
1579
|
+
|
|
1580
|
+
<td>
|
|
1581
|
+
Callouts
|
|
1582
|
+
</td>
|
|
1583
|
+
|
|
1584
|
+
<td>
|
|
1585
|
+
✅
|
|
1586
|
+
</td>
|
|
1587
|
+
|
|
1588
|
+
<td>
|
|
1589
|
+
❌
|
|
1590
|
+
</td>
|
|
1591
|
+
|
|
1592
|
+
<td>
|
|
1593
|
+
❌
|
|
1594
|
+
</td>
|
|
1595
|
+
|
|
1596
|
+
<td>
|
|
1597
|
+
❌
|
|
1598
|
+
</td>
|
|
1599
|
+
|
|
1600
|
+
<td>
|
|
1601
|
+
❌
|
|
1602
|
+
</td>
|
|
1603
|
+
|
|
1604
|
+
</tr>
|
|
1605
|
+
<tr>
|
|
1606
|
+
|
|
1607
|
+
<td>
|
|
1608
|
+
File Includes
|
|
1609
|
+
</td>
|
|
1610
|
+
|
|
1611
|
+
<td>
|
|
1612
|
+
✅
|
|
1613
|
+
</td>
|
|
1614
|
+
|
|
1615
|
+
<td>
|
|
1616
|
+
❌
|
|
1617
|
+
</td>
|
|
1618
|
+
|
|
1619
|
+
<td>
|
|
1620
|
+
✅
|
|
1621
|
+
</td>
|
|
1622
|
+
|
|
1623
|
+
<td>
|
|
1624
|
+
❌
|
|
1625
|
+
</td>
|
|
1626
|
+
|
|
1627
|
+
<td>
|
|
1628
|
+
❌
|
|
1629
|
+
</td>
|
|
1630
|
+
|
|
1631
|
+
</tr>
|
|
1632
|
+
<tr>
|
|
1633
|
+
|
|
1634
|
+
<td>
|
|
1635
|
+
Metadata
|
|
1636
|
+
</td>
|
|
1637
|
+
|
|
1638
|
+
<td>
|
|
1639
|
+
✅
|
|
1640
|
+
</td>
|
|
1641
|
+
|
|
1642
|
+
<td>
|
|
1643
|
+
❌
|
|
1644
|
+
</td>
|
|
1645
|
+
|
|
1646
|
+
<td>
|
|
1647
|
+
✅
|
|
1648
|
+
</td>
|
|
1649
|
+
|
|
1650
|
+
<td>
|
|
1651
|
+
❌
|
|
1652
|
+
</td>
|
|
1653
|
+
|
|
1654
|
+
<td>
|
|
1655
|
+
❌
|
|
1656
|
+
</td>
|
|
1657
|
+
|
|
1658
|
+
</tr>
|
|
1659
|
+
<tr>
|
|
1660
|
+
|
|
1661
|
+
<td>
|
|
1662
|
+
Abbreviations
|
|
1663
|
+
</td>
|
|
1664
|
+
|
|
1665
|
+
<td>
|
|
1666
|
+
✅
|
|
1667
|
+
</td>
|
|
1668
|
+
|
|
1669
|
+
<td>
|
|
1670
|
+
❌
|
|
1671
|
+
</td>
|
|
1672
|
+
|
|
1673
|
+
<td>
|
|
1674
|
+
✅
|
|
1675
|
+
</td>
|
|
1676
|
+
|
|
1677
|
+
<td>
|
|
1678
|
+
✅
|
|
1679
|
+
</td>
|
|
1680
|
+
|
|
1681
|
+
<td>
|
|
1682
|
+
❌
|
|
1683
|
+
</td>
|
|
1684
|
+
|
|
1685
|
+
</tr>
|
|
1686
|
+
<tr>
|
|
1687
|
+
|
|
1688
|
+
<td>
|
|
1689
|
+
IAL
|
|
1690
|
+
</td>
|
|
1691
|
+
|
|
1692
|
+
<td>
|
|
1693
|
+
✅
|
|
1694
|
+
</td>
|
|
1695
|
+
|
|
1696
|
+
<td>
|
|
1697
|
+
❌
|
|
1698
|
+
</td>
|
|
1699
|
+
|
|
1700
|
+
<td>
|
|
1701
|
+
❌
|
|
1702
|
+
</td>
|
|
1703
|
+
|
|
1704
|
+
<td>
|
|
1705
|
+
✅
|
|
1706
|
+
</td>
|
|
1707
|
+
|
|
1708
|
+
<td>
|
|
1709
|
+
❌
|
|
1710
|
+
</td>
|
|
1711
|
+
|
|
1712
|
+
</tr>
|
|
1713
|
+
<tr>
|
|
1714
|
+
|
|
1715
|
+
<td>
|
|
1716
|
+
Relaxed Tables
|
|
1717
|
+
</td>
|
|
1718
|
+
|
|
1719
|
+
<td>
|
|
1720
|
+
✅
|
|
1721
|
+
</td>
|
|
1722
|
+
|
|
1723
|
+
<td>
|
|
1724
|
+
❌
|
|
1725
|
+
</td>
|
|
1726
|
+
|
|
1727
|
+
<td>
|
|
1728
|
+
❌
|
|
1729
|
+
</td>
|
|
1730
|
+
|
|
1731
|
+
<td>
|
|
1732
|
+
✅
|
|
1733
|
+
</td>
|
|
1734
|
+
|
|
1735
|
+
<td>
|
|
1736
|
+
❌
|
|
1737
|
+
</td>
|
|
1738
|
+
|
|
1739
|
+
</tr>
|
|
1740
|
+
</tbody>
|
|
1741
|
+
|
|
1742
|
+
</table>
|
|
1743
|
+
|
|
1744
|
+
<p>
|
|
1745
|
+
* Wiki links are available in unified mode but <strong>disabled by default</strong>. Use <code>--wikilinks</code> to enable.
|
|
1746
|
+
</p>
|
|
1747
|
+
|
|
1748
|
+
<h2 id="choosing-a-mode">
|
|
1749
|
+
Choosing a Mode
|
|
1750
|
+
</h2>
|
|
1751
|
+
|
|
1752
|
+
<ul>
|
|
1753
|
+
|
|
1754
|
+
<li>
|
|
1755
|
+
<strong> Unified</strong> - Use when you want all features or need compatibility with multiple Markdown flavors
|
|
1756
|
+
</li>
|
|
1757
|
+
|
|
1758
|
+
<li>
|
|
1759
|
+
<strong> GFM</strong> - Use for GitHub compatibility or when publishing to GitHub
|
|
1760
|
+
</li>
|
|
1761
|
+
|
|
1762
|
+
<li>
|
|
1763
|
+
<strong> MMD</strong> - Use for MultiMarkdown compatibility or when you need metadata
|
|
1764
|
+
</li>
|
|
1765
|
+
|
|
1766
|
+
<li>
|
|
1767
|
+
<strong> Kramdown</strong> - Use for Kramdown compatibility or when you need IAL attributes
|
|
1768
|
+
</li>
|
|
1769
|
+
|
|
1770
|
+
<li>
|
|
1771
|
+
<strong> CommonMark</strong> - Use for strict CommonMark compliance or minimal output
|
|
1772
|
+
</li>
|
|
1773
|
+
|
|
1774
|
+
</ul>
|
|
1775
|
+
|
|
1776
|
+
<h2 id="overriding-mode-defaults">
|
|
1777
|
+
Overriding Mode Defaults
|
|
1778
|
+
</h2>
|
|
1779
|
+
|
|
1780
|
+
<p>
|
|
1781
|
+
In unified mode, you can enable or disable specific features:
|
|
1782
|
+
</p>
|
|
1783
|
+
|
|
1784
|
+
<pre><code class="highlight language-bash"><span class="c"># Unified mode but disable footnotes</span>
|
|
1785
|
+
apex <span class="nt">--mode</span> unified <span class="nt">--no-footnotes</span> document.md
|
|
1786
|
+
|
|
1787
|
+
<span class="c"># Unified mode but disable math</span>
|
|
1788
|
+
apex <span class="nt">--mode</span> unified <span class="nt">--no-math</span> document.md
|
|
1789
|
+
|
|
1790
|
+
<span class="c"># Enable wiki links (disabled by default)</span>
|
|
1791
|
+
apex <span class="nt">--mode</span> unified <span class="nt">--wikilinks</span> document.md
|
|
1792
|
+
</code></pre>
|
|
1793
|
+
|
|
1794
|
+
<h2 id="related">
|
|
1795
|
+
Related
|
|
1796
|
+
</h2>
|
|
1797
|
+
|
|
1798
|
+
<ul>
|
|
1799
|
+
|
|
1800
|
+
<li>
|
|
1801
|
+
<a href="Header-IDs.html"> Header IDs</a> - How ID formats differ by mode
|
|
1802
|
+
</li>
|
|
1803
|
+
|
|
1804
|
+
<li>
|
|
1805
|
+
<a href="Syntax.html"> Syntax</a> - Syntax available in each mode
|
|
1806
|
+
</li>
|
|
1807
|
+
|
|
1808
|
+
<li>
|
|
1809
|
+
<a href="Command-Line-Options.html"> Command Line Options</a> - Mode selection and feature flags
|
|
1810
|
+
</li>
|
|
1811
|
+
|
|
1812
|
+
</ul>
|
|
1813
|
+
|
|
1814
|
+
<script>
|
|
1815
|
+
// Hamburger menu functionality
|
|
1816
|
+
(function() {
|
|
1817
|
+
function initHamburgerMenu() {
|
|
1818
|
+
var hamburger = document.getElementById('hamburger-menu');
|
|
1819
|
+
var sidebar = document.querySelector('.main-toc, .sidebar');
|
|
1820
|
+
var overlay = document.getElementById('mobile-menu-overlay');
|
|
1821
|
+
|
|
1822
|
+
if (!hamburger || !sidebar) return;
|
|
1823
|
+
|
|
1824
|
+
function toggleMenu() {
|
|
1825
|
+
var isOpen = sidebar.classList.contains('mobile-open');
|
|
1826
|
+
if (isOpen) {
|
|
1827
|
+
sidebar.classList.remove('mobile-open');
|
|
1828
|
+
hamburger.classList.remove('active');
|
|
1829
|
+
if (overlay) overlay.classList.remove('active');
|
|
1830
|
+
} else {
|
|
1831
|
+
sidebar.classList.add('mobile-open');
|
|
1832
|
+
hamburger.classList.add('active');
|
|
1833
|
+
if (overlay) overlay.classList.add('active');
|
|
1834
|
+
}
|
|
1835
|
+
}
|
|
1836
|
+
|
|
1837
|
+
hamburger.addEventListener('click', function(e) {
|
|
1838
|
+
e.stopPropagation();
|
|
1839
|
+
toggleMenu();
|
|
1840
|
+
});
|
|
1841
|
+
|
|
1842
|
+
if (overlay) {
|
|
1843
|
+
overlay.addEventListener('click', function() {
|
|
1844
|
+
toggleMenu();
|
|
1845
|
+
});
|
|
1846
|
+
}
|
|
1847
|
+
|
|
1848
|
+
// Close menu when clicking on a sidebar link (mobile only)
|
|
1849
|
+
if (window.innerWidth <= 768) {
|
|
1850
|
+
var sidebarLinks = sidebar.querySelectorAll('a');
|
|
1851
|
+
sidebarLinks.forEach(function(link) {
|
|
1852
|
+
link.addEventListener('click', function() {
|
|
1853
|
+
setTimeout(function() {
|
|
1854
|
+
sidebar.classList.remove('mobile-open');
|
|
1855
|
+
hamburger.classList.remove('active');
|
|
1856
|
+
if (overlay) overlay.classList.remove('active');
|
|
1857
|
+
}, 100);
|
|
1858
|
+
});
|
|
1859
|
+
});
|
|
1860
|
+
}
|
|
1861
|
+
|
|
1862
|
+
// Close menu on window resize if going to desktop
|
|
1863
|
+
window.addEventListener('resize', function() {
|
|
1864
|
+
if (window.innerWidth > 768) {
|
|
1865
|
+
sidebar.classList.remove('mobile-open');
|
|
1866
|
+
hamburger.classList.remove('active');
|
|
1867
|
+
if (overlay) overlay.classList.remove('active');
|
|
1868
|
+
}
|
|
1869
|
+
});
|
|
1870
|
+
}
|
|
1871
|
+
|
|
1872
|
+
// Initialize when DOM is ready
|
|
1873
|
+
if (document.readyState === 'loading') {
|
|
1874
|
+
document.addEventListener('DOMContentLoaded', initHamburgerMenu);
|
|
1875
|
+
} else {
|
|
1876
|
+
initHamburgerMenu();
|
|
1877
|
+
}
|
|
1878
|
+
})();
|
|
1879
|
+
|
|
1880
|
+
</script>
|
|
1881
|
+
<script>
|
|
1882
|
+
(function() {
|
|
1883
|
+
// Clone the page TOC for floating TOC
|
|
1884
|
+
function initFloatingTOC() {
|
|
1885
|
+
var pageTOC = document.getElementById('page-toc-top');
|
|
1886
|
+
var floatingTOCContent = document.getElementById('floating-toc-content');
|
|
1887
|
+
var floatingTOC = document.getElementById('floating-toc');
|
|
1888
|
+
|
|
1889
|
+
if (!pageTOC || !floatingTOCContent || !floatingTOC) return;
|
|
1890
|
+
|
|
1891
|
+
// Clone the TOC structure
|
|
1892
|
+
var tocClone = pageTOC.cloneNode(true);
|
|
1893
|
+
tocClone.id = 'floating-toc-clone';
|
|
1894
|
+
floatingTOCContent.appendChild(tocClone);
|
|
1895
|
+
|
|
1896
|
+
// Update all links to use smooth scrolling
|
|
1897
|
+
var allTOCLinks = document.querySelectorAll('.page-toc a, .floating-toc-content a');
|
|
1898
|
+
allTOCLinks.forEach(function(link) {
|
|
1899
|
+
link.addEventListener('click', function(e) {
|
|
1900
|
+
var href = this.getAttribute('href');
|
|
1901
|
+
if (href && href.startsWith('#')) {
|
|
1902
|
+
e.preventDefault();
|
|
1903
|
+
var targetId = href.substring(1);
|
|
1904
|
+
var targetElement = document.getElementById(targetId);
|
|
1905
|
+
if (targetElement) {
|
|
1906
|
+
var offset = 20; // Offset from top
|
|
1907
|
+
|
|
1908
|
+
// Function to calculate absolute position from document top
|
|
1909
|
+
function getAbsoluteTop(element) {
|
|
1910
|
+
var top = 0;
|
|
1911
|
+
while (element) {
|
|
1912
|
+
top += element.offsetTop;
|
|
1913
|
+
element = element.offsetParent;
|
|
1914
|
+
}
|
|
1915
|
+
return top;
|
|
1916
|
+
}
|
|
1917
|
+
|
|
1918
|
+
var absoluteTop = getAbsoluteTop(targetElement);
|
|
1919
|
+
var scrollTop = window.pageYOffset || document.documentElement.scrollTop;
|
|
1920
|
+
var offsetPosition = absoluteTop - offset;
|
|
1921
|
+
|
|
1922
|
+
// Only scroll if we're not already at the target position
|
|
1923
|
+
if (Math.abs(scrollTop - offsetPosition) > 10) {
|
|
1924
|
+
window.scrollTo({
|
|
1925
|
+
top: Math.max(0, offsetPosition),
|
|
1926
|
+
behavior: 'smooth'
|
|
1927
|
+
});
|
|
1928
|
+
}
|
|
1929
|
+
|
|
1930
|
+
// Update URL hash without triggering scroll
|
|
1931
|
+
if (history.pushState) {
|
|
1932
|
+
history.pushState(null, null, href);
|
|
1933
|
+
}
|
|
1934
|
+
}
|
|
1935
|
+
}
|
|
1936
|
+
});
|
|
1937
|
+
});
|
|
1938
|
+
|
|
1939
|
+
// Handle scroll to show/hide floating TOC
|
|
1940
|
+
var tocTop = pageTOC.getBoundingClientRect().top + window.pageYOffset;
|
|
1941
|
+
var tocBottom = tocTop + pageTOC.offsetHeight;
|
|
1942
|
+
|
|
1943
|
+
function updateFloatingTOC() {
|
|
1944
|
+
var scrollY = window.pageYOffset || document.documentElement.scrollTop;
|
|
1945
|
+
|
|
1946
|
+
if (scrollY > tocBottom) {
|
|
1947
|
+
floatingTOC.classList.add('visible');
|
|
1948
|
+
} else {
|
|
1949
|
+
floatingTOC.classList.remove('visible');
|
|
1950
|
+
}
|
|
1951
|
+
}
|
|
1952
|
+
|
|
1953
|
+
// Throttle scroll events
|
|
1954
|
+
var ticking = false;
|
|
1955
|
+
window.addEventListener('scroll', function() {
|
|
1956
|
+
if (!ticking) {
|
|
1957
|
+
window.requestAnimationFrame(function() {
|
|
1958
|
+
updateFloatingTOC();
|
|
1959
|
+
ticking = false;
|
|
1960
|
+
});
|
|
1961
|
+
ticking = true;
|
|
1962
|
+
}
|
|
1963
|
+
});
|
|
1964
|
+
|
|
1965
|
+
// Initial check
|
|
1966
|
+
updateFloatingTOC();
|
|
1967
|
+
}
|
|
1968
|
+
|
|
1969
|
+
// Initialize when DOM is ready
|
|
1970
|
+
if (document.readyState === 'loading') {
|
|
1971
|
+
document.addEventListener('DOMContentLoaded', initFloatingTOC);
|
|
1972
|
+
} else {
|
|
1973
|
+
initFloatingTOC();
|
|
1974
|
+
}
|
|
1975
|
+
})();
|
|
1976
|
+
</script>
|
|
1977
|
+
<footer class="page-footer"><p>Copyright 2025 Brett Terpstra, All Rights Reserved | MIT License</p></footer></body>
|
|
1978
|
+
|
|
1979
|
+
</html>
|
|
1980
|
+
|