This template use Prism
and prism-react-renderer
to highlight the code blocks. This section covers how you can customize it.
To markup single lines, use the attribute {% highlight="{1,2,3,4,5}" %}
or {% highlight="{1-5}" %}
to highlight a range.
function Button(props) {let { children } = props;return <button>{children}</button>;}