├── .devcontainer └── devcontainer.json ├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── Bug_report.md │ ├── Feature_request.md │ └── Proposal.md ├── PULL_REQUEST_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE │ └── badges.md ├── dependabot.yml └── workflows │ └── tests.yml ├── .gitignore ├── .releaserc.json ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── SECURITY.md ├── api └── dingus.js ├── bin ├── main.js └── marked.js ├── docs ├── .eslintrc.json ├── AUTHORS.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── INDEX.md ├── PUBLISHING.md ├── USING_ADVANCED.md ├── USING_PRO.md ├── _document.html ├── broken.md ├── build.js ├── css │ ├── hljs-github-dark.css │ ├── hljs-github.css │ ├── shared.css │ └── style.css ├── demo │ ├── demo.css │ ├── demo.js │ ├── index.html │ ├── initial.md │ ├── preview.html │ ├── quickref.md │ └── worker.js ├── favicon.ico ├── img │ ├── copy-icon.svg │ ├── logo-black-and-white.svg │ └── logo-black.svg └── js │ └── index.js ├── esbuild.config.js ├── eslint.config.js ├── man └── marked.1.md ├── package.json ├── src ├── Hooks.ts ├── Instance.ts ├── Lexer.ts ├── MarkedOptions.ts ├── Parser.ts ├── Renderer.ts ├── TextRenderer.ts ├── Tokenizer.ts ├── Tokens.ts ├── defaults.ts ├── helpers.ts ├── marked.ts └── rules.ts ├── test ├── .eslintrc.json ├── bench.js ├── cjs-test.cjs ├── recheck.js ├── rules.js ├── run-spec-tests.js ├── specs │ ├── commonmark │ │ └── commonmark.0.31.2.json │ ├── gfm │ │ ├── commonmark.0.31.2.json │ │ └── gfm.0.29.json │ ├── new │ │ ├── adjacent_lists.html │ │ ├── adjacent_lists.md │ │ ├── angle_brackets.html │ │ ├── angle_brackets.md │ │ ├── autolink_after_link.html │ │ ├── autolink_after_link.md │ │ ├── autolink_lines.html │ │ ├── autolink_lines.md │ │ ├── autolinks.html │ │ ├── autolinks.md │ │ ├── autolinks_quotes.html │ │ ├── autolinks_quotes.md │ │ ├── backtick_precedence.html │ │ ├── backtick_precedence.md │ │ ├── backticks_in_links.html │ │ ├── backticks_in_links.md │ │ ├── blockquote_following_nptable.html │ │ ├── blockquote_following_nptable.md │ │ ├── blockquote_following_table.html │ │ ├── blockquote_following_table.md │ │ ├── blockquote_list_item.html │ │ ├── blockquote_list_item.md │ │ ├── blockquote_setext.html │ │ ├── blockquote_setext.md │ │ ├── breakline.html │ │ ├── breakline.md │ │ ├── breaks.html │ │ ├── breaks.md │ │ ├── case_insensitive_refs.html │ │ ├── case_insensitive_refs.md │ │ ├── code_block_no_ending_newline.html │ │ ├── code_block_no_ending_newline.md │ │ ├── code_compensation_indent.html │ │ ├── code_compensation_indent.md │ │ ├── code_consistent_newline.html │ │ ├── code_consistent_newline.md │ │ ├── code_following_nptable.html │ │ ├── code_following_nptable.md │ │ ├── code_following_table.html │ │ ├── code_following_table.md │ │ ├── code_spans.html │ │ ├── code_spans.md │ │ ├── codespan_newline.html │ │ ├── codespan_newline.md │ │ ├── def_blocks.html │ │ ├── def_blocks.md │ │ ├── del_strikethrough.html │ │ ├── del_strikethrough.md │ │ ├── double_link.html │ │ ├── double_link.md │ │ ├── em_2char.html │ │ ├── em_2char.md │ │ ├── em_after_inline.html │ │ ├── em_after_inline.md │ │ ├── em_and_reflinks.html │ │ ├── em_and_reflinks.md │ │ ├── em_link_brackets.html │ │ ├── em_link_brackets.md │ │ ├── em_list_links.html │ │ ├── em_list_links.md │ │ ├── em_strong_adjacent.html │ │ ├── em_strong_adjacent.md │ │ ├── em_strong_adjacent_mixed.html │ │ ├── em_strong_adjacent_mixed.md │ │ ├── em_strong_complex_nesting.html │ │ ├── em_strong_complex_nesting.md │ │ ├── em_strong_multiline.html │ │ ├── em_strong_multiline.md │ │ ├── em_strong_orphaned_nesting.html │ │ ├── em_strong_orphaned_nesting.md │ │ ├── email_after_space.html │ │ ├── email_after_space.md │ │ ├── emoji_inline.html │ │ ├── emoji_inline.md │ │ ├── emphasis_extra tests.html │ │ ├── emphasis_extra tests.md │ │ ├── empty_heading_following_paragraph.html │ │ ├── empty_heading_following_paragraph.md │ │ ├── empty_heading_following_paragraph_nogfm.html │ │ ├── empty_heading_following_paragraph_nogfm.md │ │ ├── empty_heading_following_table.html │ │ ├── empty_heading_following_table.md │ │ ├── escape_newline.html │ │ ├── escape_newline.md │ │ ├── escape_tick.html │ │ ├── escape_tick.md │ │ ├── escape_within_del.html │ │ ├── escape_within_del.md │ │ ├── escape_within_emphasis.html │ │ ├── escape_within_emphasis.md │ │ ├── escaped_angles.html │ │ ├── escaped_angles.md │ │ ├── fences_breaking_paragraphs.html │ │ ├── fences_breaking_paragraphs.md │ │ ├── fences_following_list.html │ │ ├── fences_following_list.md │ │ ├── fences_following_nptable.html │ │ ├── fences_following_nptable.md │ │ ├── fences_following_table.html │ │ ├── fences_following_table.md │ │ ├── fences_with_blankline_following_list_0.html │ │ ├── fences_with_blankline_following_list_0.md │ │ ├── fences_with_blankline_following_list_1.html │ │ ├── fences_with_blankline_following_list_1.md │ │ ├── heading_following_list.html │ │ ├── heading_following_list.md │ │ ├── heading_following_nptable.html │ │ ├── heading_following_nptable.md │ │ ├── heading_following_table.html │ │ ├── heading_following_table.md │ │ ├── hr_following_nptables.html │ │ ├── hr_following_nptables.md │ │ ├── hr_following_tables.html │ │ ├── hr_following_tables.md │ │ ├── hr_list_break.html │ │ ├── hr_list_break.md │ │ ├── html_comments.html │ │ ├── html_comments.md │ │ ├── html_following_list.html │ │ ├── html_following_list.md │ │ ├── html_following_nptable.html │ │ ├── html_following_nptable.md │ │ ├── html_following_table.html │ │ ├── html_following_table.md │ │ ├── html_no_new_line.html │ │ ├── html_no_new_line.md │ │ ├── image_links.html │ │ ├── image_links.md │ │ ├── image_paren.html │ │ ├── image_paren.md │ │ ├── incorrectly_formatted_list_and_hr.html │ │ ├── incorrectly_formatted_list_and_hr.md │ │ ├── indented_details.html │ │ ├── indented_details.md │ │ ├── indented_tables.html │ │ ├── indented_tables.md │ │ ├── inlinecode_following_nptables.html │ │ ├── inlinecode_following_nptables.md │ │ ├── inlinecode_following_tables.html │ │ ├── inlinecode_following_tables.md │ │ ├── lazy_blockquotes.html │ │ ├── lazy_blockquotes.md │ │ ├── lheading_following_nptable.html │ │ ├── lheading_following_nptable.md │ │ ├── lheading_following_table.html │ │ ├── lheading_following_table.md │ │ ├── link_lt.html │ │ ├── link_lt.md │ │ ├── link_tick_redos.html │ │ ├── link_tick_redos.md │ │ ├── link_unbalanced.html │ │ ├── link_unbalanced.md │ │ ├── links.html │ │ ├── links.md │ │ ├── links_paren.html │ │ ├── links_paren.md │ │ ├── list_align_number.html │ │ ├── list_align_number.md │ │ ├── list_align_pedantic.html │ │ ├── list_align_pedantic.md │ │ ├── list_code_header.html │ │ ├── list_code_header.md │ │ ├── list_following_nptable.html │ │ ├── list_following_nptable.md │ │ ├── list_following_table.html │ │ ├── list_following_table.md │ │ ├── list_item_tabs.html │ │ ├── list_item_tabs.md │ │ ├── list_item_text.html │ │ ├── list_item_text.md │ │ ├── list_item_unindented_asterisk.html │ │ ├── list_item_unindented_asterisk.md │ │ ├── list_loose.html │ │ ├── list_loose.md │ │ ├── list_loose_tasks.html │ │ ├── list_loose_tasks.md │ │ ├── list_paren_delimiter.html │ │ ├── list_paren_delimiter.md │ │ ├── list_table.html │ │ ├── list_table.md │ │ ├── list_tasks_non_gfm.html │ │ ├── list_tasks_non_gfm.md │ │ ├── list_with_line_break.html │ │ ├── list_with_line_break.md │ │ ├── multiple_sub_lists.html │ │ ├── multiple_sub_lists.md │ │ ├── nbsp_following_tables.html │ │ ├── nbsp_following_tables.md │ │ ├── nested_code.html │ │ ├── nested_code.md │ │ ├── nested_em.html │ │ ├── nested_em.md │ │ ├── nested_square_link.html │ │ ├── nested_square_link.md │ │ ├── nogfm_hashtag.html │ │ ├── nogfm_hashtag.md │ │ ├── not_a_link.html │ │ ├── not_a_link.md │ │ ├── paragraph-after-list-item.html │ │ ├── paragraph-after-list-item.md │ │ ├── pedantic_heading.html │ │ ├── pedantic_heading.md │ │ ├── pedantic_heading_interrupts_paragraph.html │ │ ├── pedantic_heading_interrupts_paragraph.md │ │ ├── ref_paren.html │ │ ├── ref_paren.md │ │ ├── same_bullet.html │ │ ├── same_bullet.md │ │ ├── setext_blankline.html │ │ ├── setext_blankline.md │ │ ├── setext_no_blankline.html │ │ ├── setext_no_blankline.md │ │ ├── space_after_table.html │ │ ├── space_after_table.md │ │ ├── strikethrough_in_em_strong.html │ │ ├── strikethrough_in_em_strong.md │ │ ├── strong_following_nptables.html │ │ ├── strong_following_nptables.md │ │ ├── strong_following_tables.html │ │ ├── strong_following_tables.md │ │ ├── substitutions.html │ │ ├── substitutions.md │ │ ├── tab_after_blockquote.html │ │ ├── tab_after_blockquote.md │ │ ├── tab_newline.html │ │ ├── tab_newline.md │ │ ├── table_cells.html │ │ ├── table_cells.md │ │ ├── table_following_text.html │ │ ├── table_following_text.md │ │ ├── table_reference_link.html │ │ ├── table_reference_link.md │ │ ├── table_vs_setext.html │ │ ├── table_vs_setext.md │ │ ├── tabs_code.html │ │ ├── tabs_code.md │ │ ├── tasklist_blocks.html │ │ ├── tasklist_blocks.md │ │ ├── text_following_nptables.html │ │ ├── text_following_nptables.md │ │ ├── text_following_tables.html │ │ ├── text_following_tables.md │ │ ├── toplevel_paragraphs.html │ │ ├── toplevel_paragraphs.md │ │ ├── tricky_list.html │ │ ├── tricky_list.md │ │ ├── underscore_link.html │ │ ├── underscore_link.md │ │ ├── unicode_punctuation.html │ │ ├── unicode_punctuation.md │ │ ├── whiltespace_lines.html │ │ └── whiltespace_lines.md │ ├── original │ │ ├── amps_and_angles_encoding.html │ │ ├── amps_and_angles_encoding.md │ │ ├── auto_links.html │ │ ├── auto_links.md │ │ ├── backslash_escapes.html │ │ ├── backslash_escapes.md │ │ ├── blockquotes_with_code_blocks.html │ │ ├── blockquotes_with_code_blocks.md │ │ ├── code_blocks.html │ │ ├── code_blocks.md │ │ ├── code_spans.html │ │ ├── code_spans.md │ │ ├── hard_wrapped_paragraphs_with_list_like_lines.html │ │ ├── hard_wrapped_paragraphs_with_list_like_lines.md │ │ ├── horizontal_rules.html │ │ ├── horizontal_rules.md │ │ ├── inline_html_advanced.html │ │ ├── inline_html_advanced.md │ │ ├── inline_html_comments.html │ │ ├── inline_html_comments.md │ │ ├── inline_html_simple.html │ │ ├── inline_html_simple.md │ │ ├── links_inline_style.html │ │ ├── links_inline_style.md │ │ ├── links_reference_style.html │ │ ├── links_reference_style.md │ │ ├── links_shortcut_references.html │ │ ├── links_shortcut_references.md │ │ ├── literal_quotes_in_titles.html │ │ ├── literal_quotes_in_titles.md │ │ ├── markdown_documentation_basics.html │ │ ├── markdown_documentation_basics.md │ │ ├── markdown_documentation_syntax.html │ │ ├── markdown_documentation_syntax.md │ │ ├── nested_blockquotes.html │ │ ├── nested_blockquotes.md │ │ ├── ordered_and_unordered_lists.html │ │ ├── ordered_and_unordered_lists.md │ │ ├── tabs.html │ │ ├── tabs.md │ │ ├── tidyness.html │ │ └── tidyness.md │ └── redos │ │ ├── backticks_alternating_in_link.html │ │ ├── backticks_alternating_in_link.md │ │ ├── backticks_in_link_label.html │ │ ├── backticks_in_link_label.md │ │ ├── cubic_def.cjs │ │ ├── link_code.html │ │ ├── link_code.md │ │ ├── link_redos.html │ │ ├── link_redos.md │ │ ├── quadratic_br.cjs │ │ ├── quadratic_em_mask.cjs │ │ ├── quadratic_email.cjs │ │ ├── quadratic_heading.cjs │ │ ├── quadratic_lists.cjs │ │ ├── quadratic_underscores.cjs │ │ ├── redos_html_closing.html │ │ ├── redos_html_closing.md │ │ ├── redos_nolink.html │ │ ├── redos_nolink.md │ │ ├── reflink_redos.html │ │ └── reflink_redos.md ├── types │ └── marked.ts ├── umd-test.js ├── unit │ ├── Hooks.test.js │ ├── Lexer.test.js │ ├── Parser.test.js │ ├── bin.test.js │ ├── fixtures │ │ └── bin-config.js │ ├── instance.test.js │ ├── marked.test.js │ └── utils.js └── update-specs.js ├── tsconfig-type-test.json ├── tsconfig.json └── vercel.json /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/.github/ISSUE_TEMPLATE/Bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/.github/ISSUE_TEMPLATE/Feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/.github/ISSUE_TEMPLATE/Proposal.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/badges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/.github/PULL_REQUEST_TEMPLATE/badges.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/.gitignore -------------------------------------------------------------------------------- /.releaserc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/.releaserc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/SECURITY.md -------------------------------------------------------------------------------- /api/dingus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/api/dingus.js -------------------------------------------------------------------------------- /bin/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/bin/main.js -------------------------------------------------------------------------------- /bin/marked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/bin/marked.js -------------------------------------------------------------------------------- /docs/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/docs/.eslintrc.json -------------------------------------------------------------------------------- /docs/AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/docs/AUTHORS.md -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/INDEX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/docs/INDEX.md -------------------------------------------------------------------------------- /docs/PUBLISHING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/docs/PUBLISHING.md -------------------------------------------------------------------------------- /docs/USING_ADVANCED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/docs/USING_ADVANCED.md -------------------------------------------------------------------------------- /docs/USING_PRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/docs/USING_PRO.md -------------------------------------------------------------------------------- /docs/_document.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/docs/_document.html -------------------------------------------------------------------------------- /docs/broken.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/docs/broken.md -------------------------------------------------------------------------------- /docs/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/docs/build.js -------------------------------------------------------------------------------- /docs/css/hljs-github-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/docs/css/hljs-github-dark.css -------------------------------------------------------------------------------- /docs/css/hljs-github.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/docs/css/hljs-github.css -------------------------------------------------------------------------------- /docs/css/shared.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/docs/css/shared.css -------------------------------------------------------------------------------- /docs/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/docs/css/style.css -------------------------------------------------------------------------------- /docs/demo/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/docs/demo/demo.css -------------------------------------------------------------------------------- /docs/demo/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/docs/demo/demo.js -------------------------------------------------------------------------------- /docs/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/docs/demo/index.html -------------------------------------------------------------------------------- /docs/demo/initial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/docs/demo/initial.md -------------------------------------------------------------------------------- /docs/demo/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/docs/demo/preview.html -------------------------------------------------------------------------------- /docs/demo/quickref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/docs/demo/quickref.md -------------------------------------------------------------------------------- /docs/demo/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/docs/demo/worker.js -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/img/copy-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/docs/img/copy-icon.svg -------------------------------------------------------------------------------- /docs/img/logo-black-and-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/docs/img/logo-black-and-white.svg -------------------------------------------------------------------------------- /docs/img/logo-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/docs/img/logo-black.svg -------------------------------------------------------------------------------- /docs/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/docs/js/index.js -------------------------------------------------------------------------------- /esbuild.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/esbuild.config.js -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/eslint.config.js -------------------------------------------------------------------------------- /man/marked.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/man/marked.1.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/package.json -------------------------------------------------------------------------------- /src/Hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/src/Hooks.ts -------------------------------------------------------------------------------- /src/Instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/src/Instance.ts -------------------------------------------------------------------------------- /src/Lexer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/src/Lexer.ts -------------------------------------------------------------------------------- /src/MarkedOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/src/MarkedOptions.ts -------------------------------------------------------------------------------- /src/Parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/src/Parser.ts -------------------------------------------------------------------------------- /src/Renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/src/Renderer.ts -------------------------------------------------------------------------------- /src/TextRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/src/TextRenderer.ts -------------------------------------------------------------------------------- /src/Tokenizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/src/Tokenizer.ts -------------------------------------------------------------------------------- /src/Tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/src/Tokens.ts -------------------------------------------------------------------------------- /src/defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/src/defaults.ts -------------------------------------------------------------------------------- /src/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/src/helpers.ts -------------------------------------------------------------------------------- /src/marked.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/src/marked.ts -------------------------------------------------------------------------------- /src/rules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/src/rules.ts -------------------------------------------------------------------------------- /test/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/.eslintrc.json -------------------------------------------------------------------------------- /test/bench.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/bench.js -------------------------------------------------------------------------------- /test/cjs-test.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/cjs-test.cjs -------------------------------------------------------------------------------- /test/recheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/recheck.js -------------------------------------------------------------------------------- /test/rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/rules.js -------------------------------------------------------------------------------- /test/run-spec-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/run-spec-tests.js -------------------------------------------------------------------------------- /test/specs/commonmark/commonmark.0.31.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/commonmark/commonmark.0.31.2.json -------------------------------------------------------------------------------- /test/specs/gfm/commonmark.0.31.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/gfm/commonmark.0.31.2.json -------------------------------------------------------------------------------- /test/specs/gfm/gfm.0.29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/gfm/gfm.0.29.json -------------------------------------------------------------------------------- /test/specs/new/adjacent_lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/adjacent_lists.html -------------------------------------------------------------------------------- /test/specs/new/adjacent_lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/adjacent_lists.md -------------------------------------------------------------------------------- /test/specs/new/angle_brackets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/angle_brackets.html -------------------------------------------------------------------------------- /test/specs/new/angle_brackets.md: -------------------------------------------------------------------------------- 1 | 1 < 2 **OR** 4 > 3 2 | -------------------------------------------------------------------------------- /test/specs/new/autolink_after_link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/autolink_after_link.html -------------------------------------------------------------------------------- /test/specs/new/autolink_after_link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/autolink_after_link.md -------------------------------------------------------------------------------- /test/specs/new/autolink_lines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/autolink_lines.html -------------------------------------------------------------------------------- /test/specs/new/autolink_lines.md: -------------------------------------------------------------------------------- 1 | hello world 2 | 3 | -------------------------------------------------------------------------------- /test/specs/new/autolinks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/autolinks.html -------------------------------------------------------------------------------- /test/specs/new/autolinks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/autolinks.md -------------------------------------------------------------------------------- /test/specs/new/autolinks_quotes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/autolinks_quotes.html -------------------------------------------------------------------------------- /test/specs/new/autolinks_quotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/autolinks_quotes.md -------------------------------------------------------------------------------- /test/specs/new/backtick_precedence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/backtick_precedence.html -------------------------------------------------------------------------------- /test/specs/new/backtick_precedence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/backtick_precedence.md -------------------------------------------------------------------------------- /test/specs/new/backticks_in_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/backticks_in_links.html -------------------------------------------------------------------------------- /test/specs/new/backticks_in_links.md: -------------------------------------------------------------------------------- 1 | [`` this is a backtick ` and it breaks stuff ``](https://example.com) 2 | -------------------------------------------------------------------------------- /test/specs/new/blockquote_following_nptable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/blockquote_following_nptable.html -------------------------------------------------------------------------------- /test/specs/new/blockquote_following_nptable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/blockquote_following_nptable.md -------------------------------------------------------------------------------- /test/specs/new/blockquote_following_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/blockquote_following_table.html -------------------------------------------------------------------------------- /test/specs/new/blockquote_following_table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/blockquote_following_table.md -------------------------------------------------------------------------------- /test/specs/new/blockquote_list_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/blockquote_list_item.html -------------------------------------------------------------------------------- /test/specs/new/blockquote_list_item.md: -------------------------------------------------------------------------------- 1 | This fails in markdown.pl and upskirt: 2 | 3 | * hello 4 | > world 5 | -------------------------------------------------------------------------------- /test/specs/new/blockquote_setext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/blockquote_setext.html -------------------------------------------------------------------------------- /test/specs/new/blockquote_setext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/blockquote_setext.md -------------------------------------------------------------------------------- /test/specs/new/breakline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/breakline.html -------------------------------------------------------------------------------- /test/specs/new/breakline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/breakline.md -------------------------------------------------------------------------------- /test/specs/new/breaks.html: -------------------------------------------------------------------------------- 1 |

A
B

2 | -------------------------------------------------------------------------------- /test/specs/new/breaks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/breaks.md -------------------------------------------------------------------------------- /test/specs/new/case_insensitive_refs.html: -------------------------------------------------------------------------------- 1 |

hi

2 | -------------------------------------------------------------------------------- /test/specs/new/case_insensitive_refs.md: -------------------------------------------------------------------------------- 1 | [hi] 2 | 3 | [HI]: /url 4 | -------------------------------------------------------------------------------- /test/specs/new/code_block_no_ending_newline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/code_block_no_ending_newline.html -------------------------------------------------------------------------------- /test/specs/new/code_block_no_ending_newline.md: -------------------------------------------------------------------------------- 1 | ``` 2 | no newline at end of file -------------------------------------------------------------------------------- /test/specs/new/code_compensation_indent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/code_compensation_indent.html -------------------------------------------------------------------------------- /test/specs/new/code_compensation_indent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/code_compensation_indent.md -------------------------------------------------------------------------------- /test/specs/new/code_consistent_newline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/code_consistent_newline.html -------------------------------------------------------------------------------- /test/specs/new/code_consistent_newline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/code_consistent_newline.md -------------------------------------------------------------------------------- /test/specs/new/code_following_nptable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/code_following_nptable.html -------------------------------------------------------------------------------- /test/specs/new/code_following_nptable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/code_following_nptable.md -------------------------------------------------------------------------------- /test/specs/new/code_following_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/code_following_table.html -------------------------------------------------------------------------------- /test/specs/new/code_following_table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/code_following_table.md -------------------------------------------------------------------------------- /test/specs/new/code_spans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/code_spans.html -------------------------------------------------------------------------------- /test/specs/new/code_spans.md: -------------------------------------------------------------------------------- 1 | `someone@example.com` 2 | 3 | ``*test`* -------------------------------------------------------------------------------- /test/specs/new/codespan_newline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/codespan_newline.html -------------------------------------------------------------------------------- /test/specs/new/codespan_newline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/codespan_newline.md -------------------------------------------------------------------------------- /test/specs/new/def_blocks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/def_blocks.html -------------------------------------------------------------------------------- /test/specs/new/def_blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/def_blocks.md -------------------------------------------------------------------------------- /test/specs/new/del_strikethrough.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/del_strikethrough.html -------------------------------------------------------------------------------- /test/specs/new/del_strikethrough.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/del_strikethrough.md -------------------------------------------------------------------------------- /test/specs/new/double_link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/double_link.html -------------------------------------------------------------------------------- /test/specs/new/double_link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/double_link.md -------------------------------------------------------------------------------- /test/specs/new/em_2char.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/em_2char.html -------------------------------------------------------------------------------- /test/specs/new/em_2char.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/em_2char.md -------------------------------------------------------------------------------- /test/specs/new/em_after_inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/em_after_inline.html -------------------------------------------------------------------------------- /test/specs/new/em_after_inline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/em_after_inline.md -------------------------------------------------------------------------------- /test/specs/new/em_and_reflinks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/em_and_reflinks.html -------------------------------------------------------------------------------- /test/specs/new/em_and_reflinks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/em_and_reflinks.md -------------------------------------------------------------------------------- /test/specs/new/em_link_brackets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/em_link_brackets.html -------------------------------------------------------------------------------- /test/specs/new/em_link_brackets.md: -------------------------------------------------------------------------------- 1 | _[`a[b]c`](http://example.com/_/path)_ -------------------------------------------------------------------------------- /test/specs/new/em_list_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/em_list_links.html -------------------------------------------------------------------------------- /test/specs/new/em_list_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/em_list_links.md -------------------------------------------------------------------------------- /test/specs/new/em_strong_adjacent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/em_strong_adjacent.html -------------------------------------------------------------------------------- /test/specs/new/em_strong_adjacent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/em_strong_adjacent.md -------------------------------------------------------------------------------- /test/specs/new/em_strong_adjacent_mixed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/em_strong_adjacent_mixed.html -------------------------------------------------------------------------------- /test/specs/new/em_strong_adjacent_mixed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/em_strong_adjacent_mixed.md -------------------------------------------------------------------------------- /test/specs/new/em_strong_complex_nesting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/em_strong_complex_nesting.html -------------------------------------------------------------------------------- /test/specs/new/em_strong_complex_nesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/em_strong_complex_nesting.md -------------------------------------------------------------------------------- /test/specs/new/em_strong_multiline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/em_strong_multiline.html -------------------------------------------------------------------------------- /test/specs/new/em_strong_multiline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/em_strong_multiline.md -------------------------------------------------------------------------------- /test/specs/new/em_strong_orphaned_nesting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/em_strong_orphaned_nesting.html -------------------------------------------------------------------------------- /test/specs/new/em_strong_orphaned_nesting.md: -------------------------------------------------------------------------------- 1 | _**foo_bar**_ 2 | -------------------------------------------------------------------------------- /test/specs/new/email_after_space.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/email_after_space.html -------------------------------------------------------------------------------- /test/specs/new/email_after_space.md: -------------------------------------------------------------------------------- 1 | info@email.io 2 | -------------------------------------------------------------------------------- /test/specs/new/emoji_inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/emoji_inline.html -------------------------------------------------------------------------------- /test/specs/new/emoji_inline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/emoji_inline.md -------------------------------------------------------------------------------- /test/specs/new/emphasis_extra tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/emphasis_extra tests.html -------------------------------------------------------------------------------- /test/specs/new/emphasis_extra tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/emphasis_extra tests.md -------------------------------------------------------------------------------- /test/specs/new/empty_heading_following_paragraph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/empty_heading_following_paragraph.html -------------------------------------------------------------------------------- /test/specs/new/empty_heading_following_paragraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/empty_heading_following_paragraph.md -------------------------------------------------------------------------------- /test/specs/new/empty_heading_following_paragraph_nogfm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/empty_heading_following_paragraph_nogfm.html -------------------------------------------------------------------------------- /test/specs/new/empty_heading_following_paragraph_nogfm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/empty_heading_following_paragraph_nogfm.md -------------------------------------------------------------------------------- /test/specs/new/empty_heading_following_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/empty_heading_following_table.html -------------------------------------------------------------------------------- /test/specs/new/empty_heading_following_table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/empty_heading_following_table.md -------------------------------------------------------------------------------- /test/specs/new/escape_newline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/escape_newline.html -------------------------------------------------------------------------------- /test/specs/new/escape_newline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/escape_newline.md -------------------------------------------------------------------------------- /test/specs/new/escape_tick.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/escape_tick.html -------------------------------------------------------------------------------- /test/specs/new/escape_tick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/escape_tick.md -------------------------------------------------------------------------------- /test/specs/new/escape_within_del.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/escape_within_del.html -------------------------------------------------------------------------------- /test/specs/new/escape_within_del.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/escape_within_del.md -------------------------------------------------------------------------------- /test/specs/new/escape_within_emphasis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/escape_within_emphasis.html -------------------------------------------------------------------------------- /test/specs/new/escape_within_emphasis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/escape_within_emphasis.md -------------------------------------------------------------------------------- /test/specs/new/escaped_angles.html: -------------------------------------------------------------------------------- 1 |

>

2 | -------------------------------------------------------------------------------- /test/specs/new/escaped_angles.md: -------------------------------------------------------------------------------- 1 | \> 2 | -------------------------------------------------------------------------------- /test/specs/new/fences_breaking_paragraphs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/fences_breaking_paragraphs.html -------------------------------------------------------------------------------- /test/specs/new/fences_breaking_paragraphs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/fences_breaking_paragraphs.md -------------------------------------------------------------------------------- /test/specs/new/fences_following_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/fences_following_list.html -------------------------------------------------------------------------------- /test/specs/new/fences_following_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/fences_following_list.md -------------------------------------------------------------------------------- /test/specs/new/fences_following_nptable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/fences_following_nptable.html -------------------------------------------------------------------------------- /test/specs/new/fences_following_nptable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/fences_following_nptable.md -------------------------------------------------------------------------------- /test/specs/new/fences_following_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/fences_following_table.html -------------------------------------------------------------------------------- /test/specs/new/fences_following_table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/fences_following_table.md -------------------------------------------------------------------------------- /test/specs/new/fences_with_blankline_following_list_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/fences_with_blankline_following_list_0.html -------------------------------------------------------------------------------- /test/specs/new/fences_with_blankline_following_list_0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/fences_with_blankline_following_list_0.md -------------------------------------------------------------------------------- /test/specs/new/fences_with_blankline_following_list_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/fences_with_blankline_following_list_1.html -------------------------------------------------------------------------------- /test/specs/new/fences_with_blankline_following_list_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/fences_with_blankline_following_list_1.md -------------------------------------------------------------------------------- /test/specs/new/heading_following_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/heading_following_list.html -------------------------------------------------------------------------------- /test/specs/new/heading_following_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/heading_following_list.md -------------------------------------------------------------------------------- /test/specs/new/heading_following_nptable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/heading_following_nptable.html -------------------------------------------------------------------------------- /test/specs/new/heading_following_nptable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/heading_following_nptable.md -------------------------------------------------------------------------------- /test/specs/new/heading_following_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/heading_following_table.html -------------------------------------------------------------------------------- /test/specs/new/heading_following_table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/heading_following_table.md -------------------------------------------------------------------------------- /test/specs/new/hr_following_nptables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/hr_following_nptables.html -------------------------------------------------------------------------------- /test/specs/new/hr_following_nptables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/hr_following_nptables.md -------------------------------------------------------------------------------- /test/specs/new/hr_following_tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/hr_following_tables.html -------------------------------------------------------------------------------- /test/specs/new/hr_following_tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/hr_following_tables.md -------------------------------------------------------------------------------- /test/specs/new/hr_list_break.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/hr_list_break.html -------------------------------------------------------------------------------- /test/specs/new/hr_list_break.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/hr_list_break.md -------------------------------------------------------------------------------- /test/specs/new/html_comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/html_comments.html -------------------------------------------------------------------------------- /test/specs/new/html_comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/html_comments.md -------------------------------------------------------------------------------- /test/specs/new/html_following_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/html_following_list.html -------------------------------------------------------------------------------- /test/specs/new/html_following_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/html_following_list.md -------------------------------------------------------------------------------- /test/specs/new/html_following_nptable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/html_following_nptable.html -------------------------------------------------------------------------------- /test/specs/new/html_following_nptable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/html_following_nptable.md -------------------------------------------------------------------------------- /test/specs/new/html_following_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/html_following_table.html -------------------------------------------------------------------------------- /test/specs/new/html_following_table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/html_following_table.md -------------------------------------------------------------------------------- /test/specs/new/html_no_new_line.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/specs/new/html_no_new_line.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/specs/new/image_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/image_links.html -------------------------------------------------------------------------------- /test/specs/new/image_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/image_links.md -------------------------------------------------------------------------------- /test/specs/new/image_paren.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/image_paren.html -------------------------------------------------------------------------------- /test/specs/new/image_paren.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/image_paren.md -------------------------------------------------------------------------------- /test/specs/new/incorrectly_formatted_list_and_hr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/incorrectly_formatted_list_and_hr.html -------------------------------------------------------------------------------- /test/specs/new/incorrectly_formatted_list_and_hr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/incorrectly_formatted_list_and_hr.md -------------------------------------------------------------------------------- /test/specs/new/indented_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/indented_details.html -------------------------------------------------------------------------------- /test/specs/new/indented_details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/indented_details.md -------------------------------------------------------------------------------- /test/specs/new/indented_tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/indented_tables.html -------------------------------------------------------------------------------- /test/specs/new/indented_tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/indented_tables.md -------------------------------------------------------------------------------- /test/specs/new/inlinecode_following_nptables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/inlinecode_following_nptables.html -------------------------------------------------------------------------------- /test/specs/new/inlinecode_following_nptables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/inlinecode_following_nptables.md -------------------------------------------------------------------------------- /test/specs/new/inlinecode_following_tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/inlinecode_following_tables.html -------------------------------------------------------------------------------- /test/specs/new/inlinecode_following_tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/inlinecode_following_tables.md -------------------------------------------------------------------------------- /test/specs/new/lazy_blockquotes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/lazy_blockquotes.html -------------------------------------------------------------------------------- /test/specs/new/lazy_blockquotes.md: -------------------------------------------------------------------------------- 1 | > hi there 2 | bud 3 | -------------------------------------------------------------------------------- /test/specs/new/lheading_following_nptable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/lheading_following_nptable.html -------------------------------------------------------------------------------- /test/specs/new/lheading_following_nptable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/lheading_following_nptable.md -------------------------------------------------------------------------------- /test/specs/new/lheading_following_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/lheading_following_table.html -------------------------------------------------------------------------------- /test/specs/new/lheading_following_table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/lheading_following_table.md -------------------------------------------------------------------------------- /test/specs/new/link_lt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/link_lt.html -------------------------------------------------------------------------------- /test/specs/new/link_lt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/link_lt.md -------------------------------------------------------------------------------- /test/specs/new/link_tick_redos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/link_tick_redos.html -------------------------------------------------------------------------------- /test/specs/new/link_tick_redos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/link_tick_redos.md -------------------------------------------------------------------------------- /test/specs/new/link_unbalanced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/link_unbalanced.html -------------------------------------------------------------------------------- /test/specs/new/link_unbalanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/link_unbalanced.md -------------------------------------------------------------------------------- /test/specs/new/links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/links.html -------------------------------------------------------------------------------- /test/specs/new/links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/links.md -------------------------------------------------------------------------------- /test/specs/new/links_paren.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/links_paren.html -------------------------------------------------------------------------------- /test/specs/new/links_paren.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/links_paren.md -------------------------------------------------------------------------------- /test/specs/new/list_align_number.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/list_align_number.html -------------------------------------------------------------------------------- /test/specs/new/list_align_number.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/list_align_number.md -------------------------------------------------------------------------------- /test/specs/new/list_align_pedantic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/list_align_pedantic.html -------------------------------------------------------------------------------- /test/specs/new/list_align_pedantic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/list_align_pedantic.md -------------------------------------------------------------------------------- /test/specs/new/list_code_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/list_code_header.html -------------------------------------------------------------------------------- /test/specs/new/list_code_header.md: -------------------------------------------------------------------------------- 1 | - list 2 | # header 3 | -------------------------------------------------------------------------------- /test/specs/new/list_following_nptable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/list_following_nptable.html -------------------------------------------------------------------------------- /test/specs/new/list_following_nptable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/list_following_nptable.md -------------------------------------------------------------------------------- /test/specs/new/list_following_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/list_following_table.html -------------------------------------------------------------------------------- /test/specs/new/list_following_table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/list_following_table.md -------------------------------------------------------------------------------- /test/specs/new/list_item_tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/list_item_tabs.html -------------------------------------------------------------------------------- /test/specs/new/list_item_tabs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/list_item_tabs.md -------------------------------------------------------------------------------- /test/specs/new/list_item_text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/list_item_text.html -------------------------------------------------------------------------------- /test/specs/new/list_item_text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/list_item_text.md -------------------------------------------------------------------------------- /test/specs/new/list_item_unindented_asterisk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/list_item_unindented_asterisk.html -------------------------------------------------------------------------------- /test/specs/new/list_item_unindented_asterisk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/list_item_unindented_asterisk.md -------------------------------------------------------------------------------- /test/specs/new/list_loose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/list_loose.html -------------------------------------------------------------------------------- /test/specs/new/list_loose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/list_loose.md -------------------------------------------------------------------------------- /test/specs/new/list_loose_tasks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/list_loose_tasks.html -------------------------------------------------------------------------------- /test/specs/new/list_loose_tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/list_loose_tasks.md -------------------------------------------------------------------------------- /test/specs/new/list_paren_delimiter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/list_paren_delimiter.html -------------------------------------------------------------------------------- /test/specs/new/list_paren_delimiter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/list_paren_delimiter.md -------------------------------------------------------------------------------- /test/specs/new/list_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/list_table.html -------------------------------------------------------------------------------- /test/specs/new/list_table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/list_table.md -------------------------------------------------------------------------------- /test/specs/new/list_tasks_non_gfm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/list_tasks_non_gfm.html -------------------------------------------------------------------------------- /test/specs/new/list_tasks_non_gfm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/list_tasks_non_gfm.md -------------------------------------------------------------------------------- /test/specs/new/list_with_line_break.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/list_with_line_break.html -------------------------------------------------------------------------------- /test/specs/new/list_with_line_break.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/list_with_line_break.md -------------------------------------------------------------------------------- /test/specs/new/multiple_sub_lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/multiple_sub_lists.html -------------------------------------------------------------------------------- /test/specs/new/multiple_sub_lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/multiple_sub_lists.md -------------------------------------------------------------------------------- /test/specs/new/nbsp_following_tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/nbsp_following_tables.html -------------------------------------------------------------------------------- /test/specs/new/nbsp_following_tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/nbsp_following_tables.md -------------------------------------------------------------------------------- /test/specs/new/nested_code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/nested_code.html -------------------------------------------------------------------------------- /test/specs/new/nested_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/nested_code.md -------------------------------------------------------------------------------- /test/specs/new/nested_em.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/nested_em.html -------------------------------------------------------------------------------- /test/specs/new/nested_em.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/nested_em.md -------------------------------------------------------------------------------- /test/specs/new/nested_square_link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/nested_square_link.html -------------------------------------------------------------------------------- /test/specs/new/nested_square_link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/nested_square_link.md -------------------------------------------------------------------------------- /test/specs/new/nogfm_hashtag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/nogfm_hashtag.html -------------------------------------------------------------------------------- /test/specs/new/nogfm_hashtag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/nogfm_hashtag.md -------------------------------------------------------------------------------- /test/specs/new/not_a_link.html: -------------------------------------------------------------------------------- 1 |

[test](not a link)

2 | -------------------------------------------------------------------------------- /test/specs/new/not_a_link.md: -------------------------------------------------------------------------------- 1 | \[test](not a link) 2 | -------------------------------------------------------------------------------- /test/specs/new/paragraph-after-list-item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/paragraph-after-list-item.html -------------------------------------------------------------------------------- /test/specs/new/paragraph-after-list-item.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/paragraph-after-list-item.md -------------------------------------------------------------------------------- /test/specs/new/pedantic_heading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/pedantic_heading.html -------------------------------------------------------------------------------- /test/specs/new/pedantic_heading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/pedantic_heading.md -------------------------------------------------------------------------------- /test/specs/new/pedantic_heading_interrupts_paragraph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/pedantic_heading_interrupts_paragraph.html -------------------------------------------------------------------------------- /test/specs/new/pedantic_heading_interrupts_paragraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/pedantic_heading_interrupts_paragraph.md -------------------------------------------------------------------------------- /test/specs/new/ref_paren.html: -------------------------------------------------------------------------------- 1 |

hi

2 | -------------------------------------------------------------------------------- /test/specs/new/ref_paren.md: -------------------------------------------------------------------------------- 1 | [hi] 2 | 3 | [hi]: /url (there) 4 | -------------------------------------------------------------------------------- /test/specs/new/same_bullet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/same_bullet.html -------------------------------------------------------------------------------- /test/specs/new/same_bullet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/same_bullet.md -------------------------------------------------------------------------------- /test/specs/new/setext_blankline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/setext_blankline.html -------------------------------------------------------------------------------- /test/specs/new/setext_blankline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/setext_blankline.md -------------------------------------------------------------------------------- /test/specs/new/setext_no_blankline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/setext_no_blankline.html -------------------------------------------------------------------------------- /test/specs/new/setext_no_blankline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/setext_no_blankline.md -------------------------------------------------------------------------------- /test/specs/new/space_after_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/space_after_table.html -------------------------------------------------------------------------------- /test/specs/new/space_after_table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/space_after_table.md -------------------------------------------------------------------------------- /test/specs/new/strikethrough_in_em_strong.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/strikethrough_in_em_strong.html -------------------------------------------------------------------------------- /test/specs/new/strikethrough_in_em_strong.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/strikethrough_in_em_strong.md -------------------------------------------------------------------------------- /test/specs/new/strong_following_nptables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/strong_following_nptables.html -------------------------------------------------------------------------------- /test/specs/new/strong_following_nptables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/strong_following_nptables.md -------------------------------------------------------------------------------- /test/specs/new/strong_following_tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/strong_following_tables.html -------------------------------------------------------------------------------- /test/specs/new/strong_following_tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/strong_following_tables.md -------------------------------------------------------------------------------- /test/specs/new/substitutions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/substitutions.html -------------------------------------------------------------------------------- /test/specs/new/substitutions.md: -------------------------------------------------------------------------------- 1 | foo␤␤bar 2 | 3 | * a * 4 | -------------------------------------------------------------------------------- /test/specs/new/tab_after_blockquote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/tab_after_blockquote.html -------------------------------------------------------------------------------- /test/specs/new/tab_after_blockquote.md: -------------------------------------------------------------------------------- 1 | > test -------------------------------------------------------------------------------- /test/specs/new/tab_newline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/tab_newline.html -------------------------------------------------------------------------------- /test/specs/new/tab_newline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/tab_newline.md -------------------------------------------------------------------------------- /test/specs/new/table_cells.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/table_cells.html -------------------------------------------------------------------------------- /test/specs/new/table_cells.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/table_cells.md -------------------------------------------------------------------------------- /test/specs/new/table_following_text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/table_following_text.html -------------------------------------------------------------------------------- /test/specs/new/table_following_text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/table_following_text.md -------------------------------------------------------------------------------- /test/specs/new/table_reference_link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/table_reference_link.html -------------------------------------------------------------------------------- /test/specs/new/table_reference_link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/table_reference_link.md -------------------------------------------------------------------------------- /test/specs/new/table_vs_setext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/table_vs_setext.html -------------------------------------------------------------------------------- /test/specs/new/table_vs_setext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/table_vs_setext.md -------------------------------------------------------------------------------- /test/specs/new/tabs_code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/tabs_code.html -------------------------------------------------------------------------------- /test/specs/new/tabs_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/tabs_code.md -------------------------------------------------------------------------------- /test/specs/new/tasklist_blocks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/tasklist_blocks.html -------------------------------------------------------------------------------- /test/specs/new/tasklist_blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/tasklist_blocks.md -------------------------------------------------------------------------------- /test/specs/new/text_following_nptables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/text_following_nptables.html -------------------------------------------------------------------------------- /test/specs/new/text_following_nptables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/text_following_nptables.md -------------------------------------------------------------------------------- /test/specs/new/text_following_tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/text_following_tables.html -------------------------------------------------------------------------------- /test/specs/new/text_following_tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/text_following_tables.md -------------------------------------------------------------------------------- /test/specs/new/toplevel_paragraphs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/toplevel_paragraphs.html -------------------------------------------------------------------------------- /test/specs/new/toplevel_paragraphs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/toplevel_paragraphs.md -------------------------------------------------------------------------------- /test/specs/new/tricky_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/tricky_list.html -------------------------------------------------------------------------------- /test/specs/new/tricky_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/tricky_list.md -------------------------------------------------------------------------------- /test/specs/new/underscore_link.html: -------------------------------------------------------------------------------- 1 |

test

2 | -------------------------------------------------------------------------------- /test/specs/new/underscore_link.md: -------------------------------------------------------------------------------- 1 | _[test](https://example.com?link=with_(underscore))_ 2 | -------------------------------------------------------------------------------- /test/specs/new/unicode_punctuation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/unicode_punctuation.html -------------------------------------------------------------------------------- /test/specs/new/unicode_punctuation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/unicode_punctuation.md -------------------------------------------------------------------------------- /test/specs/new/whiltespace_lines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/whiltespace_lines.html -------------------------------------------------------------------------------- /test/specs/new/whiltespace_lines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/new/whiltespace_lines.md -------------------------------------------------------------------------------- /test/specs/original/amps_and_angles_encoding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/amps_and_angles_encoding.html -------------------------------------------------------------------------------- /test/specs/original/amps_and_angles_encoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/amps_and_angles_encoding.md -------------------------------------------------------------------------------- /test/specs/original/auto_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/auto_links.html -------------------------------------------------------------------------------- /test/specs/original/auto_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/auto_links.md -------------------------------------------------------------------------------- /test/specs/original/backslash_escapes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/backslash_escapes.html -------------------------------------------------------------------------------- /test/specs/original/backslash_escapes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/backslash_escapes.md -------------------------------------------------------------------------------- /test/specs/original/blockquotes_with_code_blocks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/blockquotes_with_code_blocks.html -------------------------------------------------------------------------------- /test/specs/original/blockquotes_with_code_blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/blockquotes_with_code_blocks.md -------------------------------------------------------------------------------- /test/specs/original/code_blocks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/code_blocks.html -------------------------------------------------------------------------------- /test/specs/original/code_blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/code_blocks.md -------------------------------------------------------------------------------- /test/specs/original/code_spans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/code_spans.html -------------------------------------------------------------------------------- /test/specs/original/code_spans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/code_spans.md -------------------------------------------------------------------------------- /test/specs/original/hard_wrapped_paragraphs_with_list_like_lines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/hard_wrapped_paragraphs_with_list_like_lines.html -------------------------------------------------------------------------------- /test/specs/original/hard_wrapped_paragraphs_with_list_like_lines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/hard_wrapped_paragraphs_with_list_like_lines.md -------------------------------------------------------------------------------- /test/specs/original/horizontal_rules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/horizontal_rules.html -------------------------------------------------------------------------------- /test/specs/original/horizontal_rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/horizontal_rules.md -------------------------------------------------------------------------------- /test/specs/original/inline_html_advanced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/inline_html_advanced.html -------------------------------------------------------------------------------- /test/specs/original/inline_html_advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/inline_html_advanced.md -------------------------------------------------------------------------------- /test/specs/original/inline_html_comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/inline_html_comments.html -------------------------------------------------------------------------------- /test/specs/original/inline_html_comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/inline_html_comments.md -------------------------------------------------------------------------------- /test/specs/original/inline_html_simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/inline_html_simple.html -------------------------------------------------------------------------------- /test/specs/original/inline_html_simple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/inline_html_simple.md -------------------------------------------------------------------------------- /test/specs/original/links_inline_style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/links_inline_style.html -------------------------------------------------------------------------------- /test/specs/original/links_inline_style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/links_inline_style.md -------------------------------------------------------------------------------- /test/specs/original/links_reference_style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/links_reference_style.html -------------------------------------------------------------------------------- /test/specs/original/links_reference_style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/links_reference_style.md -------------------------------------------------------------------------------- /test/specs/original/links_shortcut_references.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/links_shortcut_references.html -------------------------------------------------------------------------------- /test/specs/original/links_shortcut_references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/links_shortcut_references.md -------------------------------------------------------------------------------- /test/specs/original/literal_quotes_in_titles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/literal_quotes_in_titles.html -------------------------------------------------------------------------------- /test/specs/original/literal_quotes_in_titles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/literal_quotes_in_titles.md -------------------------------------------------------------------------------- /test/specs/original/markdown_documentation_basics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/markdown_documentation_basics.html -------------------------------------------------------------------------------- /test/specs/original/markdown_documentation_basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/markdown_documentation_basics.md -------------------------------------------------------------------------------- /test/specs/original/markdown_documentation_syntax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/markdown_documentation_syntax.html -------------------------------------------------------------------------------- /test/specs/original/markdown_documentation_syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/markdown_documentation_syntax.md -------------------------------------------------------------------------------- /test/specs/original/nested_blockquotes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/nested_blockquotes.html -------------------------------------------------------------------------------- /test/specs/original/nested_blockquotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/nested_blockquotes.md -------------------------------------------------------------------------------- /test/specs/original/ordered_and_unordered_lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/ordered_and_unordered_lists.html -------------------------------------------------------------------------------- /test/specs/original/ordered_and_unordered_lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/ordered_and_unordered_lists.md -------------------------------------------------------------------------------- /test/specs/original/tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/tabs.html -------------------------------------------------------------------------------- /test/specs/original/tabs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/tabs.md -------------------------------------------------------------------------------- /test/specs/original/tidyness.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/tidyness.html -------------------------------------------------------------------------------- /test/specs/original/tidyness.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/original/tidyness.md -------------------------------------------------------------------------------- /test/specs/redos/backticks_alternating_in_link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/redos/backticks_alternating_in_link.html -------------------------------------------------------------------------------- /test/specs/redos/backticks_alternating_in_link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/redos/backticks_alternating_in_link.md -------------------------------------------------------------------------------- /test/specs/redos/backticks_in_link_label.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/redos/backticks_in_link_label.html -------------------------------------------------------------------------------- /test/specs/redos/backticks_in_link_label.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/redos/backticks_in_link_label.md -------------------------------------------------------------------------------- /test/specs/redos/cubic_def.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/redos/cubic_def.cjs -------------------------------------------------------------------------------- /test/specs/redos/link_code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/redos/link_code.html -------------------------------------------------------------------------------- /test/specs/redos/link_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/redos/link_code.md -------------------------------------------------------------------------------- /test/specs/redos/link_redos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/redos/link_redos.html -------------------------------------------------------------------------------- /test/specs/redos/link_redos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/redos/link_redos.md -------------------------------------------------------------------------------- /test/specs/redos/quadratic_br.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/redos/quadratic_br.cjs -------------------------------------------------------------------------------- /test/specs/redos/quadratic_em_mask.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/redos/quadratic_em_mask.cjs -------------------------------------------------------------------------------- /test/specs/redos/quadratic_email.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/redos/quadratic_email.cjs -------------------------------------------------------------------------------- /test/specs/redos/quadratic_heading.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/redos/quadratic_heading.cjs -------------------------------------------------------------------------------- /test/specs/redos/quadratic_lists.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/redos/quadratic_lists.cjs -------------------------------------------------------------------------------- /test/specs/redos/quadratic_underscores.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/redos/quadratic_underscores.cjs -------------------------------------------------------------------------------- /test/specs/redos/redos_html_closing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/redos/redos_html_closing.html -------------------------------------------------------------------------------- /test/specs/redos/redos_html_closing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/redos/redos_html_closing.md -------------------------------------------------------------------------------- /test/specs/redos/redos_nolink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/redos/redos_nolink.html -------------------------------------------------------------------------------- /test/specs/redos/redos_nolink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/redos/redos_nolink.md -------------------------------------------------------------------------------- /test/specs/redos/reflink_redos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/redos/reflink_redos.html -------------------------------------------------------------------------------- /test/specs/redos/reflink_redos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/specs/redos/reflink_redos.md -------------------------------------------------------------------------------- /test/types/marked.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/types/marked.ts -------------------------------------------------------------------------------- /test/umd-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/umd-test.js -------------------------------------------------------------------------------- /test/unit/Hooks.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/unit/Hooks.test.js -------------------------------------------------------------------------------- /test/unit/Lexer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/unit/Lexer.test.js -------------------------------------------------------------------------------- /test/unit/Parser.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/unit/Parser.test.js -------------------------------------------------------------------------------- /test/unit/bin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/unit/bin.test.js -------------------------------------------------------------------------------- /test/unit/fixtures/bin-config.js: -------------------------------------------------------------------------------- 1 | export default { 2 | breaks: true, 3 | }; 4 | -------------------------------------------------------------------------------- /test/unit/instance.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/unit/instance.test.js -------------------------------------------------------------------------------- /test/unit/marked.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/unit/marked.test.js -------------------------------------------------------------------------------- /test/unit/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/unit/utils.js -------------------------------------------------------------------------------- /test/update-specs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/test/update-specs.js -------------------------------------------------------------------------------- /tsconfig-type-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/tsconfig-type-test.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedjs/marked/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- 1 | { 2 | "cleanUrls": true 3 | } 4 | --------------------------------------------------------------------------------