Write the title of your submission here
Types of Headings
Heading 1
It is not recommended to use heading 1 as that will automatically be the title of your submission, and it will not be added to the table of contents. Please use Heading 2 and onwards.
Heading 2
In markdown syntax:
## Heading 2
Heading 3
In markdown syntax:
## Heading 3
Heading 4
In markdown syntax:
## Heading 4
Heading 5
In markdown syntax:
## Heading 5
Heading 6
In markdown syntax:
## Heading 6
Lists
Ordered list:
- first item
- second item
- third item
In markdown syntax:
1. first item
2. second item
3. third item
Unordered list:
- item
- item
- item
In markdown syntax:
* item
* item
* item
Blockquotes
This is a blockquote
In markdown syntax:
> This is a blockquote
Prompts
this is a tip prompt
In markdown syntax:
{: .prompt-tip }
> this is a tip prompt
this is an info prompt
In markdown syntax:
{: .prompt-info }
> this is an info prompt
this is a warning prompt
In markdown syntax:
{: .prompt-warning }
> this is a warning prompt
this is a danger prompt
In markdown syntax:
{: .prompt-danger }
> this is a danger prompt
Links
Showing Link: Go to https://digitalpasts.github.io/openDANES/index.html.
In markdown syntax:
<https://digitalpasts.github.io/openDANES/index.html>{:target="_blank"}
Link Embedded in text: Go to the OpenDANES journal.
In markdown syntax:
[OpenDANES journal](https://digitalpasts.github.io/openDANES/index.html){:target="_blank"}.
Footnotes
This is a sentence with a footnote in the end.1 This is another sentence with a footnote in the end.2
In markdown syntax:
This is a sentence with a footnote in the end.[^1] This is another sentence with a footnote in the end.[^2]
[^1]: This is the footnote of the first sentence.
[^2]: This is the footnote of the second sentence.
Tables
Heading 1 | Heading 2 | Heading 3 |
---|---|---|
value 1 | value 4 | value 7 |
value 2 | value 5 | value 8 |
value 3 | value 6 | value 9 |
In markdown syntax:
| Heading 1 | Heading 2 | Heading 3 |
|-----------|-----------|-----------|
| value 1 | value 4 | value 7 |
| value 2 | value 5 | value 8 |
| value 3 | value 6 | value 9 |
Inline code and code blocks
This is inline code
.
In markdown syntax:
This is `inline code`.
This is a python codeblock:
pip install cltk
In markdown syntax:
```python
pip install cltk
```
For other programming languages, change python
to the the appropriate language.
Figures and legends
Figure 1: This is the logo of CLTK
When referencing an image, please only change the name and type of your image (“image-1.jpg” below).
In markdown syntax:
![Image placeholder]({{site.baseurl}}/images/tutorials/{{page.title}}/image-1.jpg)
When adding a legend, please change only the content variable (“Figure 1: This is the logo of CLTK”) below.
In markdown syntax:
{% include fig_legend.html content="Figure 1: This is the logo of CLTK" %}