This is content from the resource.
First heading
First text.
Second heading
Second text.
Third Heading
Third text.
Fourth heading
Fourth text.
Fifth heading
Fifth text.
Sixth heading
Sixth text.
This is italic.
This is bold.
This is default MD image
new text
Pre For rehype-pretty-code
file.tsx
// You can copy this code block
- interface EmojiProps {
label?: string;
emoji: string;
}
// Note the highlighted rows below
+ export default function Emoji({ label, emoji, ...props }: EmojiProps) {
return (
<span
role="img"
aria-label={label || ""}
aria-hidden={label ? "false" : "true"}
{...props}
>
{emoji}
</span>
);
}
This is a blockquote.