These blog posts are written using MDX which allows using JSX in markdown content.
Below is an example of markdown with JSX
#### This is a title!
<div style={{backgroundColor: 'tomato', padding: '1rem'}}>
This is a JSX block with background colour 'tomato'.
</div>
Rendered on this page it looks like
This is a title!
This is a JSX block with background colour 'tomato'.