├── .eslintignore ├── .github ├── dependabot.yml └── workflows │ ├── on-dependabot.yml │ ├── on-push.yml │ └── on-release.yml ├── .gitignore ├── .prettierignore ├── .yarn ├── plugins │ └── @yarnpkg │ │ └── plugin-interactive-tools.cjs └── releases │ └── yarn-2.3.3.cjs ├── .yarnrc.yml ├── CHANGELOG.md ├── README.md ├── index.js ├── package.json ├── test ├── fixture.md ├── index.js ├── outputs │ ├── index-jsx.html │ ├── index-jsx.png │ ├── index.html │ └── index.png ├── snapshots │ ├── index.js.md │ └── index.js.snap └── style.css └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-hint/HEAD/.eslintignore -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-hint/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/on-dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-hint/HEAD/.github/workflows/on-dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/on-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-hint/HEAD/.github/workflows/on-push.yml -------------------------------------------------------------------------------- /.github/workflows/on-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-hint/HEAD/.github/workflows/on-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-hint/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-hint/HEAD/.prettierignore -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-hint/HEAD/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs -------------------------------------------------------------------------------- /.yarn/releases/yarn-2.3.3.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-hint/HEAD/.yarn/releases/yarn-2.3.3.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-hint/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-hint/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-hint/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-hint/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-hint/HEAD/package.json -------------------------------------------------------------------------------- /test/fixture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-hint/HEAD/test/fixture.md -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-hint/HEAD/test/index.js -------------------------------------------------------------------------------- /test/outputs/index-jsx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-hint/HEAD/test/outputs/index-jsx.html -------------------------------------------------------------------------------- /test/outputs/index-jsx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-hint/HEAD/test/outputs/index-jsx.png -------------------------------------------------------------------------------- /test/outputs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-hint/HEAD/test/outputs/index.html -------------------------------------------------------------------------------- /test/outputs/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-hint/HEAD/test/outputs/index.png -------------------------------------------------------------------------------- /test/snapshots/index.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-hint/HEAD/test/snapshots/index.js.md -------------------------------------------------------------------------------- /test/snapshots/index.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-hint/HEAD/test/snapshots/index.js.snap -------------------------------------------------------------------------------- /test/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-hint/HEAD/test/style.css -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-hint/HEAD/yarn.lock --------------------------------------------------------------------------------