├── .github ├── dependabot.yml └── workflows │ ├── benchmark.yml │ ├── npm-publish.yml │ └── npm-test.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── SECURITY.md ├── bench └── index.js ├── eslint.config.mjs ├── ghtml-perf.png ├── ghtml.gif ├── package.json ├── src ├── includeFile.js └── index.js └── test ├── index.js └── test.md /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgunday/ghtml/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/benchmark.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgunday/ghtml/HEAD/.github/workflows/benchmark.yml -------------------------------------------------------------------------------- /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgunday/ghtml/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.github/workflows/npm-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgunday/ghtml/HEAD/.github/workflows/npm-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgunday/ghtml/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgunday/ghtml/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgunday/ghtml/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgunday/ghtml/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgunday/ghtml/HEAD/SECURITY.md -------------------------------------------------------------------------------- /bench/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgunday/ghtml/HEAD/bench/index.js -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgunday/ghtml/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /ghtml-perf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgunday/ghtml/HEAD/ghtml-perf.png -------------------------------------------------------------------------------- /ghtml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgunday/ghtml/HEAD/ghtml.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgunday/ghtml/HEAD/package.json -------------------------------------------------------------------------------- /src/includeFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgunday/ghtml/HEAD/src/includeFile.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgunday/ghtml/HEAD/src/index.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgunday/ghtml/HEAD/test/index.js -------------------------------------------------------------------------------- /test/test.md: -------------------------------------------------------------------------------- 1 | # test.md> 2 | --------------------------------------------------------------------------------