Morwen's Formatting List

From Infinite Worlds
Jump to navigation Jump to search

Morwen's Formatting List[edit]

This is a dictionary of all found Markdown styles that work with outcomeDescription.


Heading[edit]

# H1
## H2
### H3
#### H4

Bold[edit]

**bold text**

Italic[edit]

*italicized text*

Blockquote[edit]

Block Quote (single line)[edit]

> blockquote
Must begin on a new line.

Block Quote (multi-line)[edit]

> Line 1 of block 1
> Line 2 of block 1
>> Line 1 of nested block 2
>> Line 2 of nested block 2
>
> Back to block 1

Plain lines following a > continue at the current nesting level.
An empty line closes all previous blocks of a higher level.

Alternative format:
> Line 1 of block 1
Line 2 of block 1
>> Line 1 of nested block 2
Line 2 of nested block 2
>
> Back to block 1

Ordered List[edit]

1. First item
2. Second item
3. Third item

Unordered List[edit]

- First item
- Second item
- Third item

Horizontal Rule[edit]

---

Table[edit]

| Syntax | Description | Column |
| :--- | :---: | ---: |
| ==Left-aligned Text== | ==Centered Text== | ==Right-aligned Text== |
| Left-aligned Text | Centered Text | Right-aligned Text |

Every uneven content row (1, 3, 5, …) requires highlighting for visibility.

Code[edit]

`code`

Fenced Code Block[edit]

```
{
  "firstName": "John",
  "lastName": "Smith",
  "age": 25
}
```

Footnote[edit]

Here's a sentence with a footnote. [^1]

[^1]: This is the footnote.

Definition List[edit]

term
: definition

Strikethrough[edit]

~~The world is flat.~~

Highlight[edit]

I need to highlight these ==very important words==.

Subscript[edit]

H~2~O

Superscript[edit]

X^2^