Orbit

IOP Community

The example community to discuss the current and future features of this platform

๐Ÿ‘ฅ 8 members

โ† ๐Ÿ“ฃ Announcements
Jack Smies

3d ago ยท ๐Ÿ“ฃ Announcements

Markdown showcase โ€” everything you can use in a post

Posts support GitHub-flavored markdown. Each section below shows the markdown you type, followed by what it renders into โ€” copy whatever you need.

Headings

Type:

# Heading 1
## Heading 2
### Heading 3
#### Heading 4

To get:

Heading 1

Heading 2

Heading 3

Heading 4

Text styles

Type:

**bold**, *italic*, ***bold italic***, ~~strikethrough~~, `inline code`

To get: bold, italic, bold italic, strikethrough, inline code

Links

Type:

[link text](https://example.com)

To get: link text โ€” and bare URLs autolink on their own: https://example.com

Lists

Type:

- First item
- Second item
  - Nested item (indent two spaces)

1. Step one
2. Step two

To get:

  • First item
  • Second item
    • Nested item (indent two spaces)
  1. Step one
  2. Step two

Task lists

Type:

- [x] Done task
- [ ] Open task

To get:

  • Done task
  • Open task

Quotes

Type:

> Blockquotes are great for citing people.
> > And they can be nested.

To get:

Blockquotes are great for citing people.

And they can be nested.

Code blocks

Type three backticks around your code, with an optional language tag:

```js
function greet(name) {
  return "Hello, " + name + "!";
}
```

To get:

function greet(name) {
  return "Hello, " + name + "!";
}

Tables

Type (the : in the second row controls column alignment):

| Feature   | Syntax |
| :-------- | -----: |
| Tables    | pipes  |
| Alignment | colons |

To get:

FeatureSyntax
Tablespipes
Alignmentcolons

Images

Type:

![Image on Imgur](https://i.imgur.com/N3EGN7w.png)

To get:

Image on Imgur

Horizontal rule

Type --- on its own line to get:


Footnotes

Type:

Even footnotes work.[^1]

[^1]: Like this one.

To get: Even footnotes work.1

That's the whole toolbox โ€” happy posting! ๐Ÿ› ๏ธ

Footnotes

  1. Like this one, rendered at the bottom of the post. โ†ฉ

๐Ÿ’ฌ 0 comments

Log in to join the discussion.