Markdownテスト
見出し 1
見出し 2
見出し 3
見出し 4
見出し 5
GitHub - honojs/honox: HonoX - Hono based meta frameworkHonoX - Hono based meta framework. Contribute to honojs/honox development by creating an account on GitHub.
github.com

Blockquote
- List
- List
- List
- One
- Two
- Three
Inline code with backticks
Italic
Bold
// code block
console.log("code");import type { Meta } from "../types";
export default function Top() {
const posts = import.meta.glob<{ frontmatter: Meta }>("./posts/*.mdx", {
eager: true,
});
return (
<div>
<h2>Posts</h2>
<ul class="article-list">
{Object.entries(posts).map(([id, module]) => {
if (module.frontmatter) {
return (
<li>
<a href={`${id.replace(/\.mdx$/, "")}`}>{module.frontmatter.title}</a>
</li>
);
}
})}
</ul>
</div>
);
}NOTE
test
TIP
Optional information to help a user be more successful.
IMPORTANT
Crucial information necessary for users to succeed.
WARNING
Critical content demanding immediate user attention due to potential risks.
CAUTION
Negative potential consequences of an action.