EDIT_THIS ADD_JOURNAL ADD_ISSUE ADD_ARTICLE PUBLISH ?

Markdown formatting guide

article⁄Markdown formatting guide
contributor⁄
in issues⁄
Published on Jun, 28 2021
abstract⁄This is a Markdown formatting guide.
keywords⁄markdown guideguide

1. What is Markdown

Markdown is an open standard for a flexible, human-readable, lightweight mark-up language for formatting text. It was developed by John Gruber and the late Aaron Swartz, and released in 2004. Markdown files have the extension ‘.md’ and consist of plain text, therefore they can be opened, edited and read using any text editor, rudimentary or otherwise.

Since its release in 2004 Markdown has been adopted widely for multiple applications – for example by GitHub (for repository readme files), by R (as R Markdown), for note-taking and collaborative writing applications (e.g. Obsidian, hackmd.io, Zotero, Nextcloud), for chat applications (e.g. Element), and also by static website frameworks (e.g. Hugo and Jekyll).

Although one can read and write Markdown using a basic notepad, it is recommended to use a text editor with Markdown support such as www⁄Obsidian, or www⁄Visual Studio Code. For an online Markdown editor see www⁄hackmd.io.

Markdown documents can be converted to multiple other document formats. Tools like www⁄Pandoc allow working with and compiling bibliographic references, and can render Markdown files into pdf, docx, txt, html, epub, and many other file formats (see article⁄Markdown bibliographic referencing workflow).

2. Markdown formatting guide

The following demonstrates how to write in Markdown and shows how Markdown is rendered by this website. For external resources on Markdown see the §⁄Notes section.

2.1. Writing in Markdown [draft]

Markdown is a plain text format, intended for digital text. Unlike conventional word processors that go by the

that simulate writing on paper and follow the what-you-see-is-what-you-get (WYSIWYG) concept.

Markdown is intended to facilitate writing and reading.

em dash – with some content inside – is useful.

Formatting:

This will 
appear as 
a single 
line.  

Appearance:
This will appear as a single line.

2.2. Text formatting

Formatting Appearance
normal text normal text
*emphasis* emphasis
**bold** bold
***bold emphasis*** bold emphasis
~~strikethrough~~ strikethrough
`code blocks` code blocks
something<sup>superscript</sup> somethingsuperscript
something<sub>subscript</sub> somethingsubscript
\* \~ \[ \{ \# * ~ [ { #

2.3. Headings and subheadings

Headings make use of the hashtag character, as follows:

# Heading
## Sub-heading
### Sub-sub-heading  

Note that a space is required between the hashtag character and the header text. For creating links to specific headings of the same document see §⁄internal links

2.4. Lists

Markdown bullet lists use the dash/minus symbol as in:

- bullet 1 
- bullet 2 
  - sub-bullet 2.1

Numbered lists start with a number followed by a period as in:

1. List item 1, 
2. List item 2, 
  1. Sub-item 2.1

Bullet list appearance:

Numbered list appearance:

  1. List item 1,
  2. List item 2,
    1. Sub-item 2.1

Note that both cases require a space before the list item text. To add depth, add two spaces or a tab in a subsequent list item. Lists should not have empty lines between items.

2.5. Quotes [draft]

Blockquotes:

This is a blockquote. Block quotes should be used when the quoted text is 40 words or more. Otherwise use in-line quotes. In all cases quotes are followed by a reference (Author et. al 2010).

Blockquote formatting:

> This is a blockquote. Block quotes should be used when the quoted text is 40 words or more. Otherwise use in-line quotes. In all cases quotes are followed by a reference (Author et. al 2010).

Inline quotes: For shorter quotes, use inline quotes, between “quotation marks” and should be followed by a reference (Author 2015).

Note that:

2.6. Images

Recommended and supported image formats are:

Avoid image formats that are lossy and can introduce artifacts (e.g. JPG).

Image formatting pseudocode:

![Image caption.](path/to/image.png)

![Image caption.](path/to/image.png "Optional mouse-over text description.")

The examples below use the same graphic put together in Illustrator and exported to:

Image formatting example:

![Figure 1: Sample illustration in SVG (vector format).](/sample/graphics/jgdr-test-illustration.svg "(Optional mouse-over text description) This is a SVG vector image.")

![Figure 2: Sample illustration in PNG (raster format); exported from Illustrator: type-optimized, transparent background, export resolution x3.](/sample/graphics/jgdr-test-illustration-3x.png "(Optional mouse-over text) This a PNG raster image.")

Appearance:

Figure 1: Sample illustration in SVG (vector format).
Figure 1: Sample illustration in SVG (vector format).

Figure 2: Sample illustration in PNG (raster format); exported from Illustrator: type-optimized, transparent background, size x3.
Figure 2: Sample illustration in PNG (raster format); exported from Illustrator: type-optimized, transparent background, size x3.

Note: to view the full resolution version of an image, right click on an image and select “Open image in new tab”.

2.7. Tables

Table formatting:

| Header 1 | Header 2 | Header 3|
|--|--|--|
| This | is | a|
| table | with | content.|

Table appearance:

Header 1 Header 2 Header 3
This is a
table with content.

Note: The number of dashes in the second row, as well as the white space inside individual cells are arbitrary, and can modified to make the table more easily readable while writing/editing.

2.7.1. Table column alignment

In case alignment is important, it can be assigned per column.

Formatting:

| Header 1 | Header 2 | Header 3|
|:--|:--:|--:|
| left | center | right|

Appearance:

Header 1 Header 2 Header 3
left center right

2.7.2. Headerless tables

For a table without headers, leave the initial row empty.

Formatting:

| | |
|-|-|
|A|table|
|without|headers|

Appearance:

A table
without headers

2.8. Bibliography

To incorporate bibliographic referencing (citations and references) in Markdown documents see the article⁄Markdown bibliographic referencing workflow guide.

Hyperlink formatting:

[hyperlink caption](https://hyperlink-destination.org)

Hyperlink appearance: www⁄hyperlink caption.

Note: Do not omit the http:// or https:// part of the URL.

Links to headings or subheadings of the same document use a syntax similar to hyperlinks. There are two ways to create such links. The recommended way is to assign a custom id to a heading, and use that custom id as a the destination of the link:

  1. To assign an id to a heading, follow the example below (where myheading-id is a placeholder):
    ## This is a Subsection {#myheading-id}
    
  2. To create a link to that section use the syntax:
    [go to my subsection](#myheading-id)
    

For example, the section “Headings and subheadings” above, has the id headings:

## Headings and subheadings {#headings}

To link to that heading via id follow the syntax: [go to Headings section](#headings), which appears as §⁄go to Headings section.


The second, suboptimal and more laborious way to create document-internal links is to convert a heading title to a destination. Example:

As follows, to link to the first section of this entry with heading, as in: # What is Markdown would be: [go to 'What is Markdown'](#what-is-markdown), which will appear as: §⁄go to ‘What is Markdown’.

Note that linking to headings via custom ids is much more reliable, since heading titles can change anytime, thus causing a link-by-title to break. Furthermore, heading titles can be quite long which is impractical and can also result in mistyped link destinations. Note also that broken links are not detected: e.g. §⁄this is an internal link to an inexistent heading.

2.9.3. Footnotes

The syntax for inserting a footnote is [^key], where key can be arbitrary. The content of the footnote can be placed anywhere in the document, and follows the syntax [^key]: Footnote content.

Here is a sentence with a footnote.1 Footnotes are placed after a period or comma, like here.1 Footnotes can be reused, and Sandpoints will generate dynamic backlinks to all mentions of the same footnote.1

Formatting:

Here is a sentence with a footnote.[^fn]
[^fn]: This is the text of a footnote, used 3 times.

Note: these require a fork or a clone of this site.

The convention for links to other entries of this project is:

![Link caption](itemType:entry-filename)

Examples:

![Authors submission guide (issue)](issue:issue-authors-guide)  
![Markdown formatting guide (article)](article:md-formatting)

Appearance:

issue⁄Authors submission guide (issue)
article⁄Markdown formatting guide (article)

Library items can be referenced inside entries of this website. To reference a library item inside a Markdown entry of this project do:

![](bib:the-book-id). 

Where the-book-id is a placeholder for the unique id of a library item (in the style of 625e5562-38bc-4497-adaa-5142ef810c4a). To get the id of an item, go to the Library, find the item you want to reference, and copy the last part of it’s URL after .../book/.

Example library reference:

![](bib:f2f08a6f-751c-463a-910b-7742a4e004e5)

Appearance:

Rilla Khaled, Jonathan Lessard & Pippin Barr, 2018. bib⁄Documenting Trajectories in Design Space: A Methodology for Applied Game Design Research. ACM.

Note: the formatting convention ![](bib:book-id) will automatically generate a bibliographic citation (as in the example above). To use a custom text associated with a library reference add some text in the square brackets of the link as in ![My custom text for a library item](bib:book-id).

2.11. Code blocks

Code blocks are segments that ignore Markdown formatting, and will be compiled verbatim. For inline code blocks enclose text within backticks, as in:

'inline code block'

that will appear as: inline code block

For multiline code blocks enclose text between two sets of triple backticks ( ``` ).

code blocks will ignore markdown formatting, e.g.
![]() ## ** {{}} [^footnote]

2.12. Embedded content [THIS WE NEED TO TALK ABOUT]

Hugo can embed a range of different media via shortcodes (see www⁄Hugo shortcodes). Note that embedded media cannot be exported to PDF or printed.

More importantly, embedded content could disappear any time. To properly archive media it is recommended to add such items to the Library, and refer to them via a link – this can be facilitated by editors.


YouTube, and Vimeo videos can be easily embedded using video ids (the last bit of their URLs). Examples:

Video 1: Video caption.
Video 2: Video caption.

Formatting (note: remove * characters):

{{*< youtube UEoDJ1v6U6U >*}}
<figcaption>Video 1: Video caption.</figcaption>

{{*< vimeo 55073825 >*}}
<figcaption>Video 2: Video caption.</figcaption>

2.12.1. GitHub Gists

Example:

Codegist 1: Gist caption.

Formatting (note: remove * characters):

{{*< gist username gistId >*}}
<figcaption>Codegist 1: Gist caption.</figcaption>

2.12.2. Videogame embedding [DRAFT]

Implement Unity WebGL embed described here: www⁄https://michaelcassidy.net/post/hugo-shortcode-for-embedding-unity-webgl-players-updated-with-code/

This should allow embedding games as follows (note: square brackets need to be replaced with curly brackets):

> [[< unity-webgl-player game
> Title="My cool game" 
> width="1024" height="576" 
> buildURL="https://somewhere.com/path/to/files/Build" 
> buildFileName="webgl" 
> playerID="" >]]

2.13. Other Markdown formatting conventions

The following includes formatting that might be useful while writing, but has limited application in published material.

2.13.1. Horizontal dash

Formatting

---

Appearance


Note: Leave an empty line before a horizontal dash.

2.13.2. Toggle lists

- [ ] Unchecked toggle item. 
- [x] Checked toggle item. 

2.13.3. Comments

To comment out some content, so that it’s ignored use HTML comment formatting as follows:

<!-- This is a comment and will not appear-->

<!-- 
Comments 
can be
multiline.
-->

3. Notes


  1. This is the text of a footnote, used 3 times. ↩︎ ↩︎ ↩︎