├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── bb.yml │ └── main.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .remarkignore ├── index.d.ts ├── index.js ├── lib └── index.js ├── license ├── package.json ├── readme.md ├── script └── crawl-tests.js ├── test ├── fixture │ ├── 0-tables.md │ ├── 1-tables.md │ ├── 10-strikethrough.md │ ├── 11-strikethrough.md │ ├── 12-strikethrough.md │ ├── 13-autolinks.md │ ├── 14-autolinks.md │ ├── 15-autolinks.md │ ├── 16-autolinks.md │ ├── 17-autolinks.md │ ├── 18-autolinks.md │ ├── 19-autolinks.md │ ├── 2-tables.md │ ├── 20-autolinks.md │ ├── 21-autolinks.md │ ├── 22-autolinks.md │ ├── 23-autolinks.md │ ├── 3-tables.md │ ├── 4-tables.md │ ├── 5-tables.md │ ├── 6-tables.md │ ├── 7-tables.md │ ├── 8-task-list-items.html │ ├── 8-task-list-items.md │ ├── 9-task-list-items.html │ └── 9-task-list-items.md ├── index.js └── spec.js └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-gfm/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-gfm/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/bb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-gfm/HEAD/.github/workflows/bb.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-gfm/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-gfm/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.md 3 | coverage/ 4 | -------------------------------------------------------------------------------- /.remarkignore: -------------------------------------------------------------------------------- 1 | test/ 2 | -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-gfm/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-gfm/HEAD/index.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-gfm/HEAD/lib/index.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-gfm/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-gfm/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-gfm/HEAD/readme.md -------------------------------------------------------------------------------- /script/crawl-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-gfm/HEAD/script/crawl-tests.js -------------------------------------------------------------------------------- /test/fixture/0-tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-gfm/HEAD/test/fixture/0-tables.md -------------------------------------------------------------------------------- /test/fixture/1-tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-gfm/HEAD/test/fixture/1-tables.md -------------------------------------------------------------------------------- /test/fixture/10-strikethrough.md: -------------------------------------------------------------------------------- 1 | ~~Hi~~ Hello, ~~there~~ world! 2 | -------------------------------------------------------------------------------- /test/fixture/11-strikethrough.md: -------------------------------------------------------------------------------- 1 | This \~\~has a 2 | 3 | new paragraph\~\~. 4 | -------------------------------------------------------------------------------- /test/fixture/12-strikethrough.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-gfm/HEAD/test/fixture/12-strikethrough.md -------------------------------------------------------------------------------- /test/fixture/13-autolinks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-gfm/HEAD/test/fixture/13-autolinks.md -------------------------------------------------------------------------------- /test/fixture/14-autolinks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-gfm/HEAD/test/fixture/14-autolinks.md -------------------------------------------------------------------------------- /test/fixture/15-autolinks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-gfm/HEAD/test/fixture/15-autolinks.md -------------------------------------------------------------------------------- /test/fixture/16-autolinks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-gfm/HEAD/test/fixture/16-autolinks.md -------------------------------------------------------------------------------- /test/fixture/17-autolinks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-gfm/HEAD/test/fixture/17-autolinks.md -------------------------------------------------------------------------------- /test/fixture/18-autolinks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-gfm/HEAD/test/fixture/18-autolinks.md -------------------------------------------------------------------------------- /test/fixture/19-autolinks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-gfm/HEAD/test/fixture/19-autolinks.md -------------------------------------------------------------------------------- /test/fixture/2-tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-gfm/HEAD/test/fixture/2-tables.md -------------------------------------------------------------------------------- /test/fixture/20-autolinks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-gfm/HEAD/test/fixture/20-autolinks.md -------------------------------------------------------------------------------- /test/fixture/21-autolinks.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/fixture/22-autolinks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-gfm/HEAD/test/fixture/22-autolinks.md -------------------------------------------------------------------------------- /test/fixture/23-autolinks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-gfm/HEAD/test/fixture/23-autolinks.md -------------------------------------------------------------------------------- /test/fixture/3-tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-gfm/HEAD/test/fixture/3-tables.md -------------------------------------------------------------------------------- /test/fixture/4-tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-gfm/HEAD/test/fixture/4-tables.md -------------------------------------------------------------------------------- /test/fixture/5-tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-gfm/HEAD/test/fixture/5-tables.md -------------------------------------------------------------------------------- /test/fixture/6-tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-gfm/HEAD/test/fixture/6-tables.md -------------------------------------------------------------------------------- /test/fixture/7-tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-gfm/HEAD/test/fixture/7-tables.md -------------------------------------------------------------------------------- /test/fixture/8-task-list-items.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-gfm/HEAD/test/fixture/8-task-list-items.html -------------------------------------------------------------------------------- /test/fixture/8-task-list-items.md: -------------------------------------------------------------------------------- 1 | * [ ] foo 2 | * [x] bar 3 | -------------------------------------------------------------------------------- /test/fixture/9-task-list-items.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-gfm/HEAD/test/fixture/9-task-list-items.html -------------------------------------------------------------------------------- /test/fixture/9-task-list-items.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-gfm/HEAD/test/fixture/9-task-list-items.md -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-gfm/HEAD/test/index.js -------------------------------------------------------------------------------- /test/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-gfm/HEAD/test/spec.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/mdast-util-gfm/HEAD/tsconfig.json --------------------------------------------------------------------------------