Home / Blog / Jek Style Guide

Tyler Butler, June 08 2021

░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
░░░░░░░░░░██╗███████╗██╗░░██╗░░░░░░░░░
░░░░░░░░░░██║██╔════╝██║░██╔╝░░░░░░░░░
░░░░░░░░░░██║█████╗░░█████═╝░░░░░░░░░░
░░░░░██╗░░██║██╔══╝░░██╔═██╗░░░░░░░░░░
░░░░░╚█████╔╝███████╗██║░╚██╗░░░░░░░░░
░░░░░░╚════╝░╚══════╝╚═╝░░╚═╝░░░░░░░░░
░░░░░░░░░░░░░ Jek Style Guide ░░░░░░░░

The jek style guide shows how markdown elements are rendered on the final page. Use the following guide to help format your blog posts and about me page.

headings

# H1
## H2
### H3
#### H4
##### H5

H1

H2

H3

H4

H5

text

*bold*
**italics**

bold

italics

tables

|   	|   	|   	|   	|   	|   	|
|---	|---	|---	|---	|---	|---	|
|   	|   	|   	|   	|   	|   	|
|   	|   	|   	|   	|   	|   	|
foo foo foo foo foo foo
foo foo foo foo foo foo
foo foo foo foo foo foo

links

[awesome website](https://google.com)

awesome website

code

```javascript
function foo() {
    let bar = 12;
    console.log(bar);
}
```
function foo() {
    let bar = 12;
    console.log(bar);
}

blockquote

> foo bar foo bar

foo bar foo bar