yn2011's blog

タイトル

melon

Autolink literals

www.example.com, https://example.com, and contact@example.com.

Footnote

A note1

Strikethrough

one or two tildes.

Table

aaabbbccccdddd
aaabbbccccdddd
aaabbbccccdddd

Tasklist

  • to do
  • done c | d |
components/Code.tsx
"use client";

import SyntaxHighlighter from "react-syntax-highlighter";
import { ocean } from "react-syntax-highlighter/dist/cjs/styles/hljs";

export function Code({ lang, children }: { lang: string; children: string }) {
  return (
    <SyntaxHighlighter language={lang} style={ocean}>
      {children}
    </SyntaxHighlighter>
  );
}

Footnotes

  1. Big note.