├── .gitignore ├── LICENSE ├── README.md ├── azure-pipelines.yml ├── example ├── example.js ├── example.md └── package.json ├── gulpfile.js ├── package.json ├── src ├── index.ts ├── options.ts ├── tsconfig.json └── types │ ├── hast.ts │ ├── index.ts │ └── unist-util-visit.d.ts ├── tests ├── .gitignore ├── files │ ├── input │ │ ├── basic.md │ │ ├── css.md │ │ └── typescript.md │ └── output │ │ ├── 001.expected.html │ │ ├── 002.expected.html │ │ ├── 003.expected.html │ │ ├── 004.expected.html │ │ ├── 005.expected.html │ │ ├── 006.expected.html │ │ ├── 007.expected.html │ │ ├── 008.expected.html │ │ ├── 009.expected.html │ │ ├── 010.expected.html │ │ └── 011.expected.html ├── gulpfile.js ├── mocha.opts ├── node_modules │ └── remark-code-extra ├── package.json ├── src │ ├── declarations.ts │ ├── index.ts │ └── tsconfig.json └── yarn.lock ├── tslint.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-extra/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-extra/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-extra/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-extra/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /example/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-extra/HEAD/example/example.js -------------------------------------------------------------------------------- /example/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-extra/HEAD/example/example.md -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-extra/HEAD/example/package.json -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-extra/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-extra/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-extra/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-extra/HEAD/src/options.ts -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-extra/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /src/types/hast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-extra/HEAD/src/types/hast.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-extra/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/unist-util-visit.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-extra/HEAD/src/types/unist-util-visit.d.ts -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /yarn-error.log 3 | /build/ 4 | -------------------------------------------------------------------------------- /tests/files/input/basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-extra/HEAD/tests/files/input/basic.md -------------------------------------------------------------------------------- /tests/files/input/css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-extra/HEAD/tests/files/input/css.md -------------------------------------------------------------------------------- /tests/files/input/typescript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-extra/HEAD/tests/files/input/typescript.md -------------------------------------------------------------------------------- /tests/files/output/001.expected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-extra/HEAD/tests/files/output/001.expected.html -------------------------------------------------------------------------------- /tests/files/output/002.expected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-extra/HEAD/tests/files/output/002.expected.html -------------------------------------------------------------------------------- /tests/files/output/003.expected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-extra/HEAD/tests/files/output/003.expected.html -------------------------------------------------------------------------------- /tests/files/output/004.expected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-extra/HEAD/tests/files/output/004.expected.html -------------------------------------------------------------------------------- /tests/files/output/005.expected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-extra/HEAD/tests/files/output/005.expected.html -------------------------------------------------------------------------------- /tests/files/output/006.expected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-extra/HEAD/tests/files/output/006.expected.html -------------------------------------------------------------------------------- /tests/files/output/007.expected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-extra/HEAD/tests/files/output/007.expected.html -------------------------------------------------------------------------------- /tests/files/output/008.expected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-extra/HEAD/tests/files/output/008.expected.html -------------------------------------------------------------------------------- /tests/files/output/009.expected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-extra/HEAD/tests/files/output/009.expected.html -------------------------------------------------------------------------------- /tests/files/output/010.expected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-extra/HEAD/tests/files/output/010.expected.html -------------------------------------------------------------------------------- /tests/files/output/011.expected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-extra/HEAD/tests/files/output/011.expected.html -------------------------------------------------------------------------------- /tests/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-extra/HEAD/tests/gulpfile.js -------------------------------------------------------------------------------- /tests/mocha.opts: -------------------------------------------------------------------------------- 1 | build -------------------------------------------------------------------------------- /tests/node_modules/remark-code-extra: -------------------------------------------------------------------------------- 1 | ../../dist -------------------------------------------------------------------------------- /tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-extra/HEAD/tests/package.json -------------------------------------------------------------------------------- /tests/src/declarations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-extra/HEAD/tests/src/declarations.ts -------------------------------------------------------------------------------- /tests/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-extra/HEAD/tests/src/index.ts -------------------------------------------------------------------------------- /tests/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-extra/HEAD/tests/src/tsconfig.json -------------------------------------------------------------------------------- /tests/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-extra/HEAD/tests/yarn.lock -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-extra/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-extra/HEAD/yarn.lock --------------------------------------------------------------------------------