This sample article verifies that the site's content loading works correctly.

The First Type

We will begin with a small example. Shiki also highlights inline code such as const answer = 42.

typescript
type Answer = {
  value: number;
  label: string;
};

const answer: Answer = {
  value: 42,
  label: "the answer",
};

Mathematics

Euler's identity eiπ+1=0e^{i\pi}+1=0 is displayed as inline mathematics.

01x2dx=13\int_0^1 x^2\,dx = \frac{1}{3}

The expression above is a block equation rendered with KaTeX.

The standalone URL below becomes a link card using metadata fetched at build time.

GitHub - microsoft/TypeScript: TypeScript is a superset of JavaScript that compiles to clean JavaScript output.TypeScript is a superset of JavaScript that compiles to clean JavaScript output. - microsoft/TypeScriptGitHub

Article Image

Images placed in the same directory as the Markdown file can also be displayed.

Sample image of a cat
A sample image included with the article