Home

Colors — an MDX file

Colors!

This is an MDX file, which means it can contain markdown.

The codeblock below is highlighted during build time with shiki, using my VS Code theme Karma and with the help of remark and rehype plugins.

This is a "normal" link

And now this is code, and some code

Highlighted

asd

Gradient text

Table of Contents

Unordered list

This is an MDX file, which means it can contain markdown.

The codeblock below is highlighted during build time with shiki, using my VS Code theme Karma and with the help of remark and rehype plugins.

This is a "normal" link

Ordered list

  1. Item 1
  2. Item 2
  3. Item 3
typescript
const htmlEscapes = {  "&": "&amp;",  "<": "&lt;",  ">": "&gt;",  // eslint-disable-next-line quotes  '"': "&quot;",  "'": "&#39;",} as const;function escapeHtml(html: string) {  return html.replace(    /[&<>"']/g,    (chr) => htmlEscapes[chr as keyof typeof htmlEscapes],  );}
👀

Getting page views