Markdown Showcase
ReferencemarkdownshikiA short tour of the Markdown features the starter renders out of the box.
Heading 1
Heading 2
Heading 3
A paragraph with bold, italic, and inline code. Visit the Gatsby site for more.
Blockquotes render with the
.blockquoteclass via the post template.
- bullet one
- bullet two
- ordered one
- ordered two
export const greet = (name: string): string => `Hello, ${name}!`
const fib = (n) => (n < 2 ? n : fib(n - 1) + fib(n - 2))
yarn build
{ "name": "gatstrap", "version": "4.0.0" }
Inline code uses the Bootstrap default style: npm install.