Testing
Does not support
links inside the page, as used for references [1]
[1]: http://www.example.com
and as footnotes[^1]
---
horizontal rule
***
old gitbook markdown: https://toolchain.gitbook.com/syntax/markdown.html
header 2
This text need a citation [^1]
header 3
This is some java
public static void main(String ... args) {
}
table
1
2
2
3
sample code
{% method %}
main
{% sample lang="java" %}
public static void main(String ... args) {
}
{% endmethod %}
summary.parts
variable
output
summary
{{summary}}
summary.parts
{{summary.parts}}
for
or
iterates over arrays and dictionaries.
{% raw %}
{% for part in summary.parts %}
{% for article in part.articles %}
* [{{ article.title }}]({{ article.path }})
{% endfor %}
{% endfor %}
{% endraw %}
{% for part in summary.parts %}
{% for article in part.articles %}
* [{{ article.title }}]({{ article.path }})
{% endfor %}
{% endfor %}
set
set
lets you create/modify a variable.
{% raw %}
{% set softwareVersion = "1.0.0" %}
Current version is {{ softwareVersion }}.
{% endraw %}
{% set softwareVersion = "1.0.0" %}
Current version is {{ softwareVersion }}.
Images
Simply drag and drop the image. No Resize

****
[^1]: See this footnote
Last updated