Markdown Syntax Guide

The following subset of Markdown syntax can be used to format content throughout the site.

News Entry Specific Markdown

The following custom Markdown features can only be used in news entries for embedding specialised content. These features are not standard Markdown syntax; they exist to make the writer’s job a bit easier.

To embed a thumbnail of a picture hosted on Panzer Dragoon Legacy, type the following, where the jpeg file name matches the picture’s URL:

![](402-panzer-dragoon-orta-prerelease-screenshot.jpg)

The use of the .jpg file extension identifies it as a picture. In news entries image thumbnails have no captions, but the alt text will be automatically added based on the picture’s name. It will embed a thumbnail of the correct size for the picture located at the following URL:

https://www.panzerdragoonlegacy.com/pictures/402-panzer-dragoon-orta-prerelease-screenshot

Note, if you want to group a set of thumbnails together, you should place the image tags on separate lines, but with no blank lines in between them:

![](401-image-a.jpg)
![](402-image-b.jpg)
![](403-image-c.jpg)

If you want to group the image A separate from images B and C, leave a blank line between the image tags like this:

![](401-image-a.jpg)

![](402-image-b.jpg)
![](403-image-c.jpg)

Embedded music tracks

To embed an audio player which plays a music track hosted on Panzer Dragoon Legacy, type the following, where the mp3 file name matches the music track’s URL:

![](1-die-panzer-dragoons-chronik-panzer-dragoon-music-trailer.mp3)

The use of the .mp3 file extension identifies it as a music track and embeds the music track located at the following URL:

https://www.panzerdragoonlegacy.com/music/1-die-panzer-dragoons-chronik-panzer-dragoon-music-trailer

Embedded videos

To embed a video player which plays a video hosted on Panzer Dragoon Legacy, type the following, where the mp4 file name matches the video’s URL:

![](3-panzer-dragoon-orta-e3-2002-trailer.mp4)

The use of the .mp4 file extension identifies it as a video and embeds the video located at the following URL:

https://www.panzerdragoonlegacy.com/videos/3-panzer-dragoon-orta-e3-2002-trailer

Other embedded contact

YouTube videos, SoundCloud audio players, and other external media supported by Onebox can be embedded in news entries by simply pasting a URL beginning with http:// or https:// on a new line. The URL must be separated from the surrounding content by blank lines above and below:


https://www.youtube.com/watch?v=lS0URL9xkQQ

Universal Markdown

This following Markdown syntax can be used across the site in most text areas, with description text areas being a notable exception.

Stress Emphasis

Stress emphasis can be displayed by wrapping text in asterisks. Do not use stress emphasis for all italicised text, as it will be vocally emphasised to visually impaired users by their screen reader.

Syntax:

The following text is *important*.

Example:

The following text is important.

Strong Importance

Strong importance can be displayed by wrapping text in double asterisks. Do not use strong importance for all bold text, as it will be vocally strongly emphasised to visually impaired users by their screen reader.

Syntax:

The following text is **really important**.

Example:

The following text is really important.

Creative Works

Game, book, movie, and other “creative work” titles can be displayed with the regular HTML <cite> tag. Do not use *emphasis* for creative works, as titles should not be vocally emphasised to visually impaired users by their screen reader.

Syntax:

The greatest game in the series is <cite>Panzer Dragoon Saga</cite>.

Example:

The greatest game in the series is Panzer Dragoon Saga.

Hyperlinks can be created with square brackets for the link text followed by parentheses for the link URL.

Syntax:

Here's a link to [Joystiq](https://www.joystiq.com/).

Example:

Here’s a link to Joystiq.

Relative links to other resources on the site can be created by excluding the domain name. This is the preferable approach for creating internal links in case we change the domain name or run a copy of site on another domain.

Syntax:

Here's a link to the [Panzer Dragoon Script](/literature/728-panzer-dragoon-script).

Example:

Here’s a link to the Panzer Dragoon Script.

To link to a page belonging to the same resource (e.g. link from a literature page to another literature page, or a link from a top level page to another top level page) you can leave off the resource name and forward slash.

Syntax:

Here's a link to the [How to Contribute](how-to-contribute) page.

Example:

Here’s a link to the How to Contribute page.

Blockquotes

Quoted text can be displayed inside a blockquote using the > symbol at the start of each quoted paragraph.

Syntax:

> The arrow of light that cannot be shielded, the shell that cannot be speared, and the wings that cannot tire. These are the powers of the dragon.

Example:

The arrow of light that cannot be shielded, the shell that cannot be speared, and the wings that cannot tire. These are the powers of the dragon.

Unordered Lists

Unordered lists can be displayed by placing a hyphen before each list item.

Syntax:

- Edge
- Azel
- Craymen

Example:

  • Edge
  • Azel
  • Craymen

Ordered Lists

Ordered lists can be displayed by placing the item number and a dot before the list item.

Syntax:

1. Panzer Dragoon
2. Panzer Dragoon II Zwei
3. Panzer Dragoon Saga

Example:

  1. Panzer Dragoon
  2. Panzer Dragoon II Zwei
  3. Panzer Dragoon Saga

Description Lists

Pairs of terms and definitions can be marked up as description lists using a colon preceding the definition on the line directly below the term.

Syntax:

Elixir Minor
: Replenishes HP by 200.

Example:

Elixir Minor
Replenishes HP by 200.

Description lists can also have terms with multiple definitions. For example:

Syntax:

Programmers
: Hitoshi Nakanishi
: Kengo Naka
: Hiroshi Yamazaki
: Asaya Yamazaki

Example:

Programmers
Hitoshi Nakanishi
Kengo Naka
Hiroshi Yamazaki
Asaya Yamazaki

Inline Code

You can display inline code without it being converted to Markdown by wrapping it with the ` symbol.

Syntax:

This is how to create emphasised text in Markdown: `*emphasis*`.

Example:

This is how to create emphasised text in Markdown: *emphasis*.

Code Blocks

You can display multiple lines of code without it being converted to Markdown by placing three tildes before and after the block.

Syntax:

~~~
This is how to create an unordered list in Markdown:

- Edge
- Azel
- Craymen
~~~

Example:

This is how to create an unordered list in Markdown:

    - Edge
    - Azel
    - Craymen

Line Breaks

Markdown automatically joins lines of text together to form paragraphs. This is useful when copying and pasting emails that split paragraphs into multiple lines. On the off chance that you do need to start a new line, end the previous line with two spaces. Note that line breaks should be used sparingly; often an unordered list will be more suitable.

Syntax:

Here is a line of text which ends with two spaces.  
Here is another line of text directly below the previous line.

Example:

Here is a line of text which ends with two spaces.
Here is another line of text directly below the previous line.

Escape Characters

Literal characters can be inserted by preceding the character with a backslash.

Syntax:

\*literal asterisks\*

Example:

*literal asterisks*

The following characters can be escaped with a backslash:

*   asterisk
\   backslash
`   backtick
{}  curly braces
.   dot
!   exclamation mark
#   hash mark
-   hyphen / minus sign
()  parentheses
+   plus sign
[]  square brackets
_   underscore

Page Specific Markdown

The following advanced Markdown features can only be used in pages, such as literature and literature chapters.

Second level headings

Second level headings can be inserted into articles to break up the text by preceding the subheading with a double hash.

Syntax:

## This is a second level heading

Example:

This is a second level heading

Third level headings

Similar to second level headings, third level headings can be inserted by preceding the heading with three hashes. Note, third level headings should be used sparingly to avoid complexity.

Syntax:

### This is a third level heading

Example:

This is a third level heading

Left and Right Aligned Illustrations

Illustrations and captions can be inserted using the ![Caption](file-name.jpg) format. It is recommended that the caption and filename are similarly named and accurately describe what is in the picture, as demonstrated below. Illustrations will be automatically aligned to the left or right. Illustrations should always have a caption as this doubles as alternative text for visually impaired users.

Syntax:

![Panzer Dragoon II Zwei Logo](panzer-dragoon-ii-zwei-logo.jpg)

Example:

Panzer Dragoon II Zwei Logo
Panzer Dragoon II Zwei Logo











Adjacent Illustrations

Two comparison illustrations can be placed side by side by placing two image tags on the same line separated by a space. Note that side by side illustrations should be used sparingly to avoid clutter on the page.

Syntax:

![Logo 1](logo-1.jpg) ![Logo 2](logo-2.jpg)

Example:

Logo 1 Logo 2
TopLeftLogo 1BottomRightLogo 2

Horizontal Rules

Horizonal rules can be used to break up text by placing three asterisks with spaces between them on a new line.

Syntax:

* * *

Example:


Footnotes

Footnotes can be inserted in the body of an article using the [^footnote-id] syntax and by using the [^footnote-id]: syntax in the References section at the end of the article. The content management system will automatically convert the footnote ID’s into footnote numbers when the page is displayed.

Syntax:

Lord Craymen was 47 years old in Panzer Dragoon Saga.[^craymens-age]

[^craymens-age]: This information can be found on the [Characters page](http://www.sega.co.jp/sega/saturn/andro_hp/chara.htm) of Team Andromeda's website.

Example:

Lord Craymen was 47 years old in Panzer Dragoon Saga.1

  1. This information can be found on the Characters page of Team Andromeda’s website.