Examples to show how these basic components look in Trio.
Since Trio uses redcarpet
instead of kramdown
, we can use the triple backticks to define fenced code blocks. See the Markdown source of this file here.
Here is how code blocks look in Trio:
#container {
float: left;
margin: 0 -240px 0 0;
width: 100%;
}
You can also use liquid tag highlight
which has the same effect:
void main() {
printf("Hello World!");
}
def print_hi(name)
puts "Hi, #{name}"
end
print_hi('Tom')
#=> prints 'Hi, Tom' to STDOUT.
#container {
float: left;
margin: 0 -240px 0 0;
width: 100%;
}
def what?
42
end
You can also use the triple tilde ala kramdown
which same the same effect:
def what?
42
end
Markdown footnotes1 work nicely in Trio. You need to make sure proper extensions are enabled in either redcarpet
or kramdown
parsers.
This is how tables look like in Solo. See the Markdown source of this file here for a demo of Markdown Tables. An excellent source to create tables in many formats (including Markdown) is Tables Generator.
Left-Aligned | Center Aligned | Right Aligned |
---|---|---|
col 3 is | some wordy text | $1600 |
col 2 is | centered | $12 |
zebra stripes | are neat | $1 |
This is how GitHub Gists look in Solo.
Trio supports lists, <hr>
s, <table>
s and
blockquotes