Shiki (式, a Japanese word for “Style”) is a beautiful and powerful syntax highlighter based on TextMate grammar and themes, the same engine as VS Code’s syntax highlighting. Provides very accurate and fast syntax highlighting for almost any mainstream programming language.
Shiki Documentation →
This documentation site is built and maintained use Astro. As such, all code blocks are implemented using Expressive Code, which uses Shiki under the hood. To avoid dependency and configuration conflicts, live previews will be removed in favor of static screenshots. This will more accurately portray what you’ll see in a real world Skeleton project.
Installation
Install Shiki with your package manager of choice.
npm install -D shiki
Create a Component
In most use cases a simple reusable component should suffice. For this, we’ll do the following your project.
- Implement a new
<CodeBlock>
component in/src/lib/components/CodeBlock/CodeBlock.svelte
. - Implement the required component prop types in
/src/lib/components/CodeBlock/types.ts
. - Implement a several variations of our
<CodeBlock>
component in any SvelteKit route+page.svelte
.

A few things to note about our component:
- You will need to import and configure any number of Shiki themes.
- You will need to import and configure any number of supported languages.
- The component has been implemented using Skeleton’s component style guide.
- This provides a number of style props for easy customization via Skeleton’s own conventions.
- The source
code
,lang
(language), and eventheme
can be configured via each respective prop. - The Code Block’s
<pre>
tag is auto-generated by Shiki; target Tailwind classes with:[&>pre]:myClassHere
.
Programmatic Usage
This use case falls outside the scope of Skeleton, but we’ve provided some general guidance below.
In some cases you may not have direct access to the source code, such as code inserted into blog posts or CMS pages. In fact the code came even come baked into the markup using either HTML <pre>
or <code>
elements. For this, you’ll need to follow the general steps below. Note that the specific implementation will differ based on your application.
- Query all
<pre>
or<code>
blocks using Javascript tools likedocument.querySelectorAll()
. Be as specific as possible. - Ensure you have a clean instance of the source code itself - with no extra markup injected within.
- Use Shiki’s codeToHtml feature to parse the code as styled HTML markup.
- Then append each instance of the code blocks in your DOM.
See also this detialed guide by Joy of Code, explaining how to implement Shiki via MDX.
Skeleton Theme
NOTE: Coming Soon…
Accessibility
We recommend Salma Alam-Naylor’s guidelines for creating accessible code blocks that meet WGAC standards.