This is an article
Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.
For a quick cheatsheet, check out https://simplemde.com/markdown-guide.
This article offers a sample of basic Markdown syntax that can be used in Zola content files, also it shows whether basic HTML elements are decorated with CSS in a Zola theme.
The following HTML <h1>
—<h6>
elements represent six levels of section headings. <h1>
is the highest section level while <h6>
is the lowest.
Sometimes we want to link stuff, or make it bold, or italic.
Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat.
Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.
The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a footer
or cite
element, and optionally with in-line changes such as annotations and abbreviations.
Tiam, ad mint andaepu dandae nostion secatur sequo quae. Note that you can use Markdown syntax within a blockquote.
Don't communicate by sharing memory, share memory by communicating.
— Rob Pike
Tables aren't part of the core Markdown spec, but Hugo supports supports them out-of-the-box.
Italics | Bold | Code |
---|---|---|
italics | bold | code |
Name | Number | Opinion on cheese | Favourite tea | Colour of choice | Unusual fact | Horse? |
---|---|---|---|---|---|---|
Jackie | 012345 | Sometimes | Earl grey, hot | Blue | Communicates exclusively in metaphors | Aye |
Lucy | 112346 | Only on Tuesdays | The green one | The green one | Caught a glimpse of an Australian badger | Aye |
David | 493029 | Always eat the rind | London fog | Purple | Has never been to London | Aye |
Kerry | 395499 | It's on the moon | Camomile | Yellow | Has been to the moon | Aye |
Steve | 002458 | No | Black tea brewed using ISO 3103 | Chestnut | Has a 350° field of view | Neigh |
<figure>
These overflow.
Name | Age | Width |
---|---|---|
Bob | 27 | 2 |
Alice | 23 | oveeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeer 9000 |
Most importantly, code can be inline just fine
.
prices = {'apple': 0.40, 'banana': 0.50}
my_purchase = {
'apple': 1,
'banana': 6
}
grocery_bill = sum(prices[fruit] * my_purchase[fruit]
for fruit in my_purchase)
print('I owe the grocer $%.2f' % grocery_bill)
Now for something more beautiful. R.
library("sf")
s <- st_read("data/shp")
s |> dplyr::select(that_variable) |> plot()
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Example HTML5 Document</title>
</head>
<body>
<p>Test</p>
</body>
</html>
This other theme had this beautiful guy in it:
Or <aside> with a caption:
I'm just using details/summary. 🙂
when they nest, tho.
I like to put buttons insideGIF is a bitmap image format.
H2O
Xn + Yn = Zn
Press CTRL+ALT+Delete to end the session. If you really want to do that, that is. Consider ALT + F4 too.
Most salamanders are nocturnal, and hunt for insects, worms, and other small creatures.
The "Take me home, without scrolling"-Button
You can use LaTeX math syntax in your markdown files. For example, the equation $E=mc^2$ is inline, and the equation $$ \int_{a}^{b} f(x) , \dx $$ is displayed.