Typography guide
Examples of text, tables, diagrams, flowcharts, pictures, and more.
This page showcases how content is styled on the Pixelversed Blog — including headings, lists, tables, quotes, code blocks, callouts, and diagrams.
Headings
The following HTML <h1>—<h6> elements represent six levels of section headings. <h1> is the highest section level while <h6> is the lowest.
H1
H2
H3
H4
H5
H6
Paragraph
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.
Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.
Image
You can use the following syntax to include an image. Path of the image should be /static/.
You can also include image from external sources:
Blockquotes
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.
1. Blockquote without attribution
You can use Markdown syntax within a blockquote, like bold, italics, links,
code.
2. Blockquote with attribution
Don't communicate by sharing memory, share memory by communicating.
— Rob Pike1
Footnote
Click the hook will locate the footnote2, and here is another footnote3.
Links
Tables
Tables aren't part of the core Markdown spec, but we support them. Markdown can be included within these tables as well:
| Italics | Bold | Code | Inline code |
|---|---|---|---|
| italics | bold | code |
hello = "Hello World" |
List types
1. Ordered list
- First item
- Second item with some
codein it - Third item
2. Unordered list
- List item
- Another item with some
codein it - And another item
3. Nested list
- Fruit
- Apple
- Orange
- Banana
- Dairy
- Milk
- Cheese
4. ToDo list
- Job
- Step 1
- Step 2
- Step 3
Text formatting
GIF is a bitmap image format.
H2O
Xn + Yn = Zn
Press CTRL+ALT+Delete to end the session.
Most salamanders are nocturnal, and hunt for insects, worms, and other small creatures.
Code blocks
1. Common code
This is a common code snippet, without syntax highlight and line number.2. Inline code
Use the backtick to refer to a variable within a sentence.
3. Highlighted inline code
This inline code Console.WriteLine("Hello World"); is highlighted.
4. Highlighted and numbered lines
using System;
using System.Threading.Tasks;
class Program
{
static async Task Main()
{
string name = "World";
await Task.Delay(500);
Console.WriteLine($"Hello, {name}! Async demo complete.");
}
}5. Specific language with title
if [ $? -ne 0 ]; then
echo "The command was not successful.";
#do the needful / exit
fi;6. Difference highlighting
- console.log('This was removed')
+ console.log('This was added')
console.log('This stayed')Extended markdown
1. Callouts
Callouts are highlighted blocks that draw attention to important information. Use them to emphasize notes, tips, warnings, and cautions.
NOTE
Useful information that users should know, even when skimming content.
TIP
Helpful advice for doing things better or more easily.
IMPORTANT
Key information users need to know to achieve their goal.
WARNING
Urgent info that needs immediate user attention to avoid problems.
CAUTION
Advises about risks or negative outcomes of certain actions.
2. Mermaid diagrams
You can include diagrams directly in your post using Mermaid: