Lorem ipsum dolor sit amet, consectetur adipiscing elit 🤣, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Id donec ultrices tincidunt arcu non sodales neque sodales. Adipiscing diam donec adipiscing tristique risus nec feugiat in.
Love is bold
A cat meow
This is really very important text.
Blockquotes can also be nested...
...by using additional greater-than signs right next to each other...
...or with spaces between arrows.
Start numbering with offset:
This is an array [1, 2, 3]
of numbers 1 through 3.
<h1>Code Block</h1>
With code title:
import { createSignal } from 'solid-js'
export default function Counter() {
const [count, setCount] = createSignal(0)
const add = () => setCount((i) => i + 1)
return (
<div class='flex gap-x-4'>
<button type='button' onClick={add}>
the count is {count()}
</button>
</div>
)
}
Image compress and resize by
@astrojs/image
.
Currently, my custom component for images only supports 16:9 aspect ratio or else it will squish the image.
<BlogImage src={Dog} alt="Beagle Dog by Jules D. on Unsplash" />
<BlogImage src={Portrait} alt="Beagle Dog by Jules D. on Unsplash" />
~one~ or ~~two~~ tildes.
| First Header | Second Header | | -------------- | -------------- | | Content Cell 1 | Content Cell 1 | | Content Cell 2 | Content Cell 2 | | Content Cell 3 | Content Cell 3 | | Content Cell 4 | Content Cell 4 |
It might affect your Lighthouse score!