├── .editorconfig ├── .github └── workflows │ ├── bb.yml │ └── main.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .remarkignore ├── dev ├── index.d.ts ├── index.js └── lib │ ├── index.js │ ├── types.d.ts │ └── types.js ├── license ├── package.json ├── readme.md ├── test ├── fixtures │ ├── attention.json │ ├── attention.md │ ├── autolink.json │ ├── autolink.md │ ├── blockquote.json │ ├── blockquote.md │ ├── character-escape.json │ ├── character-escape.md │ ├── character-reference.json │ ├── character-reference.md │ ├── character-references-everywhere.json │ ├── character-references-everywhere.md │ ├── code-fenced.json │ ├── code-fenced.md │ ├── code-indented.json │ ├── code-indented.md │ ├── code-text.json │ ├── code-text.md │ ├── definition.json │ ├── definition.md │ ├── empty.json │ ├── empty.md │ ├── hard-break-escape.json │ ├── hard-break-escape.md │ ├── hard-break-prefix.json │ ├── hard-break-prefix.md │ ├── heading-atx.json │ ├── heading-atx.md │ ├── heading-setext.json │ ├── heading-setext.md │ ├── html-flow.json │ ├── html-flow.md │ ├── html-text.json │ ├── html-text.md │ ├── image-reference.json │ ├── image-reference.md │ ├── image-resource-eol.json │ ├── image-resource-eol.md │ ├── image-resource.json │ ├── image-resource.md │ ├── link-reference-with-phrasing.json │ ├── link-reference-with-phrasing.md │ ├── link-reference.json │ ├── link-reference.md │ ├── link-resource-eol.json │ ├── link-resource-eol.md │ ├── link-resource.json │ ├── link-resource.md │ ├── list.json │ ├── list.md │ ├── paragraph.json │ ├── paragraph.md │ ├── thematic-break.json │ └── thematic-break.md └── index.js └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/bb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/.github/workflows/bb.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | *.md 3 | -------------------------------------------------------------------------------- /.remarkignore: -------------------------------------------------------------------------------- 1 | micromark/ 2 | test/ 3 | -------------------------------------------------------------------------------- /dev/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/dev/index.d.ts -------------------------------------------------------------------------------- /dev/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/dev/index.js -------------------------------------------------------------------------------- /dev/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/dev/lib/index.js -------------------------------------------------------------------------------- /dev/lib/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/dev/lib/types.d.ts -------------------------------------------------------------------------------- /dev/lib/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/dev/lib/types.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/readme.md -------------------------------------------------------------------------------- /test/fixtures/attention.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/attention.json -------------------------------------------------------------------------------- /test/fixtures/attention.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/attention.md -------------------------------------------------------------------------------- /test/fixtures/autolink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/autolink.json -------------------------------------------------------------------------------- /test/fixtures/autolink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/autolink.md -------------------------------------------------------------------------------- /test/fixtures/blockquote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/blockquote.json -------------------------------------------------------------------------------- /test/fixtures/blockquote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/blockquote.md -------------------------------------------------------------------------------- /test/fixtures/character-escape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/character-escape.json -------------------------------------------------------------------------------- /test/fixtures/character-escape.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/character-escape.md -------------------------------------------------------------------------------- /test/fixtures/character-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/character-reference.json -------------------------------------------------------------------------------- /test/fixtures/character-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/character-reference.md -------------------------------------------------------------------------------- /test/fixtures/character-references-everywhere.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/character-references-everywhere.json -------------------------------------------------------------------------------- /test/fixtures/character-references-everywhere.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/character-references-everywhere.md -------------------------------------------------------------------------------- /test/fixtures/code-fenced.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/code-fenced.json -------------------------------------------------------------------------------- /test/fixtures/code-fenced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/code-fenced.md -------------------------------------------------------------------------------- /test/fixtures/code-indented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/code-indented.json -------------------------------------------------------------------------------- /test/fixtures/code-indented.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/code-indented.md -------------------------------------------------------------------------------- /test/fixtures/code-text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/code-text.json -------------------------------------------------------------------------------- /test/fixtures/code-text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/code-text.md -------------------------------------------------------------------------------- /test/fixtures/definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/definition.json -------------------------------------------------------------------------------- /test/fixtures/definition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/definition.md -------------------------------------------------------------------------------- /test/fixtures/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/empty.json -------------------------------------------------------------------------------- /test/fixtures/empty.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/hard-break-escape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/hard-break-escape.json -------------------------------------------------------------------------------- /test/fixtures/hard-break-escape.md: -------------------------------------------------------------------------------- 1 | a\ 2 | b 3 | 4 | c\ 5 | d 6 | 7 | e \ 8 | f 9 | -------------------------------------------------------------------------------- /test/fixtures/hard-break-prefix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/hard-break-prefix.json -------------------------------------------------------------------------------- /test/fixtures/hard-break-prefix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/hard-break-prefix.md -------------------------------------------------------------------------------- /test/fixtures/heading-atx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/heading-atx.json -------------------------------------------------------------------------------- /test/fixtures/heading-atx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/heading-atx.md -------------------------------------------------------------------------------- /test/fixtures/heading-setext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/heading-setext.json -------------------------------------------------------------------------------- /test/fixtures/heading-setext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/heading-setext.md -------------------------------------------------------------------------------- /test/fixtures/html-flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/html-flow.json -------------------------------------------------------------------------------- /test/fixtures/html-flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/html-flow.md -------------------------------------------------------------------------------- /test/fixtures/html-text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/html-text.json -------------------------------------------------------------------------------- /test/fixtures/html-text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/html-text.md -------------------------------------------------------------------------------- /test/fixtures/image-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/image-reference.json -------------------------------------------------------------------------------- /test/fixtures/image-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/image-reference.md -------------------------------------------------------------------------------- /test/fixtures/image-resource-eol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/image-resource-eol.json -------------------------------------------------------------------------------- /test/fixtures/image-resource-eol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/image-resource-eol.md -------------------------------------------------------------------------------- /test/fixtures/image-resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/image-resource.json -------------------------------------------------------------------------------- /test/fixtures/image-resource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/image-resource.md -------------------------------------------------------------------------------- /test/fixtures/link-reference-with-phrasing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/link-reference-with-phrasing.json -------------------------------------------------------------------------------- /test/fixtures/link-reference-with-phrasing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/link-reference-with-phrasing.md -------------------------------------------------------------------------------- /test/fixtures/link-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/link-reference.json -------------------------------------------------------------------------------- /test/fixtures/link-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/link-reference.md -------------------------------------------------------------------------------- /test/fixtures/link-resource-eol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/link-resource-eol.json -------------------------------------------------------------------------------- /test/fixtures/link-resource-eol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/link-resource-eol.md -------------------------------------------------------------------------------- /test/fixtures/link-resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/link-resource.json -------------------------------------------------------------------------------- /test/fixtures/link-resource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/link-resource.md -------------------------------------------------------------------------------- /test/fixtures/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/list.json -------------------------------------------------------------------------------- /test/fixtures/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/list.md -------------------------------------------------------------------------------- /test/fixtures/paragraph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/paragraph.json -------------------------------------------------------------------------------- /test/fixtures/paragraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/paragraph.md -------------------------------------------------------------------------------- /test/fixtures/thematic-break.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/thematic-break.json -------------------------------------------------------------------------------- /test/fixtures/thematic-break.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/fixtures/thematic-break.md -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/test/index.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-from-markdown/HEAD/tsconfig.json --------------------------------------------------------------------------------