Post Writing is using GitHub Flavored Markdown and Emoji.
Headers
# H1
## H2
### H3
#### H4
##### H5
###### H6
H1
H2
H3
H4
H5
H6
Bold Italic
**Bold** *Italic*
Lists
- 1
- 1.1
- 1.1.1
- 1.1.1.1
- Item 2
- Item 3
- Item 4
1. a
1. b
1. c
- 1
- 1.1
- 1.1.1
- 1.1.1.1
- 1.1.1
- 1.1
- Item 2
- Item 3
- Item 4
- a
- b
- c
Blockquote
> blockquote
blockquote
Fenced code highlight
# python
def some_method(var='exemple'):
if var:
pass
else:
result
// pascal
procedure some_procedure( Value : string = 'text');
begin
ShowMessage(text);
end;
# python
def some_method(var='exemple'):
if var:
pass
else:
result
// pascal
procedure some_procedure( Value : string = 'text');
begin
ShowMessage(text);
end;
Inline highlight
`inline`
Inline highlight
.
Tables
| Table | Table |
| ----- | ----- |
| cell | cell |
Table | Table |
---|---|
cell | cell |
Links
[www.google.com](https://www.google.com)
Html is used for responsive images:
<p><img class="img-responsive center-block" src="/media/blog/in-flagellis-clean.png" alt="Image" /></p>
You could use ![alt](https://link)
to link (unresponsive) images as well.
Line Separator
___
___
Liquid and Front Matter specifics
{% assign b = 5 %}
{{ site.url }}
{{ b }}
https://blog.rafael.picanco.nom.br 5