@expressive-code/plugin-shiki
Contents
What is this?
A default plugin of Expressive Code, an engine for presenting source code on the web.
It performs syntax highlighting of your code blocks using the popular Shiki highlighter, which is also being used by VS Code.
When should I use this?
This plugin is installed by default by our higher-level packages like remark-expressive-code
, so it will be used automatically when rendering code blocks in your markdown / MDX documents.
Installation (not required)
No installation is required. This package is installed by default by our higher-level packages.
If you are using the core package directly (e.g. because you are writing an integration), see the Advanced use cases section for more information.
Usage in markdown / MDX documents
This plugin will automatically highlight your code blocks using all themes defined in the Expressive Code configuration.
You only need to ensure that your opening code fences have a language identifier, e.g. js
for JavaScript:
```js
console.log('This code will be syntax highlighted!')
```
Supported languages
The full list of languages can be found in the Shiki documentation.
Configuration
This plugin does not have any configuration options. It automatically uses all themes defined in the Expressive Code configuration under the option themes
.
Here are configuration examples on how to select themes in some popular site generators:
Astro configuration example
We assume that you're using our Astro integration astro-expressive-code
.
In your Astro config file, you can pass options to the plugin like this:
import { defineConfig } from 'astro/config'
import astroExpressiveCode from 'astro-expressive-code'
const astroExpressiveCodeOptions = {
themes: ['dracula', 'solarized-light'],
}
export default defineConfig({
integrations: [
astroExpressiveCode(astroExpressiveCodeOptions),
],
})
Next.js configuration example using @next/mdx
import createMDX from '@next/mdx'
import remarkExpressiveCode from 'remark-expressive-code'
const remarkExpressiveCodeOptions = {
themes: ['dracula', 'solarized-light'],
}
const nextConfig = {
reactStrictMode: true,
pageExtensions: ["js", "jsx", "ts", "tsx", "md", "mdx"],
}
const withMDX = createMDX({
extension: /\.mdx?$/,
options: {
remarkPlugins: [
[remarkExpressiveCode, remarkExpressiveCodeOptions],
],
rehypePlugins: [],
},
})
export default withMDX(nextConfig)
Advanced use cases
Manual installation
You only need to install this plugin if you are using the core package @expressive-code/core
directly. In this case, you can install the plugin like this:
npm install @expressive-code/plugin-shiki
Manual usage from the core package
Warning:
This is an advanced usage example! You normally don't need to use the core package directly, or manually add this plugin to the configuration.
import { ExpressiveCodeEngine } from '@expressive-code/core'
import { pluginShiki } from '@expressive-code/plugin-shiki'
const ec = new ExpressiveCodeEngine({
plugins: [
pluginShiki(),
],
})
const renderResult = await ec.render({
code: 'const hello = "World!"',
language: 'js',
})