2022-08-01 • 10 min read
Heading 2
Some emoji: 🎡 🧮 🛩 .
Heading 3
Some other stuff.
This is some bold texts.
This is some italicized text
This is a blockquote
Ordered List:
- First item
- Second item
- Third item
Unordered List:
- First item
- Second item
- Third item
This is some Link.
This is some latex equations: ∑i=1100n2
Inline code: magic()
Code block
code: ({ children, showLineNumbers, fileName, id }) => {
return (
<React.Fragment>
{fileName && <div className="w-full code-filename">{fileName}</div>}
<code
className={classNames('', {
'line-numbers': showLineNumbers !== undefined,
})}
id={id}
>
{children}
</code>
</React.Fragment>
)
},