├── .php_cs.dist.php ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── package.json └── src ├── HighlightCodeExtension.php ├── Renderers ├── FencedCodeRenderer.php └── IndentedCodeRenderer.php └── ShikiHighlighter.php /.php_cs.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/commonmark-shiki-highlighter/HEAD/.php_cs.dist.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/commonmark-shiki-highlighter/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/commonmark-shiki-highlighter/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/commonmark-shiki-highlighter/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/commonmark-shiki-highlighter/HEAD/composer.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/commonmark-shiki-highlighter/HEAD/package.json -------------------------------------------------------------------------------- /src/HighlightCodeExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/commonmark-shiki-highlighter/HEAD/src/HighlightCodeExtension.php -------------------------------------------------------------------------------- /src/Renderers/FencedCodeRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/commonmark-shiki-highlighter/HEAD/src/Renderers/FencedCodeRenderer.php -------------------------------------------------------------------------------- /src/Renderers/IndentedCodeRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/commonmark-shiki-highlighter/HEAD/src/Renderers/IndentedCodeRenderer.php -------------------------------------------------------------------------------- /src/ShikiHighlighter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/commonmark-shiki-highlighter/HEAD/src/ShikiHighlighter.php --------------------------------------------------------------------------------