├── .gitignore ├── LICENSE ├── README.md ├── azure-pipelines.yml ├── gulpfile.js ├── package.json ├── src ├── index.ts ├── tsconfig.json └── types │ ├── hast.ts │ ├── index.ts │ └── modules.d.ts ├── tests ├── .gitignore ├── gulpfile.js ├── mocha.opts ├── node_modules │ └── remark-code-frontmatter ├── package.json ├── src │ ├── declarations.ts │ ├── index.ts │ ├── modules.d.ts │ └── tsconfig.json └── yarn.lock ├── tslint.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-frontmatter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-frontmatter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-frontmatter/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-frontmatter/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-frontmatter/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-frontmatter/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-frontmatter/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-frontmatter/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /src/types/hast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-frontmatter/HEAD/src/types/hast.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-frontmatter/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/modules.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-frontmatter/HEAD/src/types/modules.d.ts -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /yarn-error.log 3 | /build/ 4 | -------------------------------------------------------------------------------- /tests/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-frontmatter/HEAD/tests/gulpfile.js -------------------------------------------------------------------------------- /tests/mocha.opts: -------------------------------------------------------------------------------- 1 | build -------------------------------------------------------------------------------- /tests/node_modules/remark-code-frontmatter: -------------------------------------------------------------------------------- 1 | ../../dist -------------------------------------------------------------------------------- /tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-frontmatter/HEAD/tests/package.json -------------------------------------------------------------------------------- /tests/src/declarations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-frontmatter/HEAD/tests/src/declarations.ts -------------------------------------------------------------------------------- /tests/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-frontmatter/HEAD/tests/src/index.ts -------------------------------------------------------------------------------- /tests/src/modules.d.ts: -------------------------------------------------------------------------------- 1 | ../../src/types/modules.d.ts -------------------------------------------------------------------------------- /tests/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-frontmatter/HEAD/tests/src/tsconfig.json -------------------------------------------------------------------------------- /tests/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-frontmatter/HEAD/tests/yarn.lock -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-frontmatter/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0/remark-code-frontmatter/HEAD/yarn.lock --------------------------------------------------------------------------------