Forums


Stratus Markdown Guide


The forums use a custom version of markdown, a formatting language used just about everywhere. This guide explains most of it, as well as a few stratus-specific features.

Feel free to try any of this out in the replies!

---

Tagging People

Input:

@halfmaster1

Result:

halfmaster1 

This automatically updates when the tagged person change their username.

---

Bold, italic, and strikethrough

Input:

<br/> **bold** _italic_ ~~strike~~<br/>

Output:

bold italic strike

---

Headers

Input:

<br/> # h1 ## h2 ### h3 #### h4 ##### h5 ###### h6

Output:

h1

h2

h3
h4
h5
h6

---

Quotes

Input:

<br/> > This is a quote<br/>

Result:

This is a quote

---

Code blocks

Input:

~~~
code

<br/> multiline<br/> code<br/>
~~~

Result:

code

<br/> multiline<br/> code<br/>

---

Links

Input:

<br/> Check out the [shop](https://stratus.network/shop)!<br/>

Result:

Check out the shop!

---

Image

Input:

```
image description


```

Result:

image description


---

YouTube videos

Input:

<br/> <YouTube src="https://www.youtube.com/embed/Lmw4lzjEqD8"/><br/>

Result:


Note the capitalization of YouTube is required.

---

HTML

Input:

<br/> <span style="color: pink; font-family: 'Comic Sans MS'; font-size: 4rem;">wow!</span><br/>

Result:

wow!

Not all tags or properties work, but most normal things should work fine.


Log in to reply to this topic.