Akira

Akira (Japanese: アキラ) is a 1988 Japanese animated post-apocalyptic cyberpunk action film directed by Katsuhiro Otomo, produced by Ryōhei Suzuki and Shunzō Katō, and written by Otomo and Izo Hashimoto, based on Otomo's 1982 manga of the same name. The film had a production budget of ¥700 million ($5.5 million), making it the most expensive anime film at the time (until it was surpassed a year later by Kiki's Delivery Service).

Hello, world hi

Test anchor links.

MDX

Use MDX to use React components inside your Markdown file:

MDX (the library), at its core, transforms MDX (the syntax) to JSX. It receives an MDX string and outputs a JSX string. It does this by parsing the MDX document to a syntax tree and then generates a JSX document from that tree.

Syntax highlighting is also supported:

import useSWR from 'swr'
function Profile() {
const { data, error } = useSWR('/api/user', fetcher)
if (error) return <div>failed to load</div>
if (!data) return <div>loading...</div>
return <div>hello {data.name}!</div>
}

Click the "Edit on GitHub" link below to see the code.