the first <h1>
tag on each page will be styled to appear as though it’s followed by a horizontal rule.
blockquotes look like this.
tables look like this:
number | word form |
---|---|
1 | one |
2 | two |
3 | three |
inline code looks like this: code here
code blocks look like this (shown here with highlighting):
// code with highlighting
if (thing == true) {
object.method();
return true;
}
callouts are a type of element added by lifeblood, similar to the admonition syntax available in Read the Docs.
add one of the classes .tip
, .note
, or .caution
to a paragraph using a Kramdown inline attribute list to turn it into a callout:
{: .tip}
this is a *tip* callout.
{: .note}
this is a *note* callout.
{: .caution}
this is a *caution* callout.
this is a tip callout.
this is a note callout.
this is a caution callout.
add .caps
to capitalize the callout’s first letter:
{: .note .caps}
this is a *note* callout with the first letter capitalized.
this is a note callout with the first letter capitalized.