Overview
This is just a sample blog post that demonstrates and shows all of the custom components this site uses. This is a cool demonstration as it renders all of the custom components in a single blog, making it easy to share, test, and learn from.
H1 Header
H2 Header
H3 Header
H4 Header
H5 Header
H6 Header
paragraph
bold text
italic text
bold and italic
x12345
x9876
Blockquote
Single
"The only way to do great work is to love what you do."
Steve Jobs
Nested
"The only way to do great work is to love what you do."
Steve Jobs
This is a cool quote!
Nested and Formatted
"The only way to do great work is to love what you do."
Steve Jobs
This is a header
- Item One
- Item Two
Preformatted Text
This is preformatted text!
Lists
- unordered
- list
- ordered
- list
Lines
Code Blocks
jayson.js
const o = {
name: "My cool object",
isItCool: true,
};
const jayson = "grab name";
const query = (json, input) => {
// logic will go here
};
query(o, jayson); // will return "My cool object" ##