Post Formatting

werchan posts are written in Markdown with a number of additions.

Post References

There are a couple ways to reference other posts:

Embeds

You can upload files with the upload form, found below every post form:

File:
You still need to include images in your post (![description](http://f.guhnoo.org/blah.png)) after uploading them!

Then you can embed those files in your posts with ![optional description](http://f.guhnoo.org/filename.ext).

If the file is a MIDI, MID, KAR, MPGA, MPEGA, MP2, MP3, M4A, OGA, OGG, SPX, RA, WEBA, 3GPP, 3GP, MP4, MPEG, MPG, MPE, OGV, MOV, WEBM, FLV, MNG, ASX, ASF, WMV, or AVI, it is embedded as audio/video.

If the file is an FODG, FODP, FODS, FODT, ODG, ODP, ODS, ODT, or PDF, it is embedded as a document.

If the file is an OBJ or STL, it is embedded as a 3D model.

Otherwise, the file is embedded as an image.

You can embed audio, video, and images from other domains with ![optional description](http[s]://otherdomain.tld/filename.ext). Only files uploaded to f.guhnoo.org can be embedded as documents and 3D models.

You can embed YouTube videos with ![](https://www.youtube.com/watch?v=video_id).

Blockquotes

> This is some quoted text.
This is the second line of the quoted text.

This text is not quoted. Note the blank line before it.

Links

[displayed text](protocol://domain.tld/whatever)

protocol://automatic.link/whatever

Emphasis

*italic*

_italic_

**bold**

__italic__

***bold and italic***

___bold and italic___

~~strikethrough~~

Unordered Lists

* Red
* Green
* Blue

+ Red
+ Green
+ Blue

- Red
- Green
- Blue

Ordered Lists

1. Red
2. Green
3. Blue

Headings

Heading 1
=========

Heading 2
---------

# Heading 1

## Heading 2

### Heading 3

#### Heading 4

##### Heading 5

###### Heading 6

Code

`inline code`

```
fn code block {
    code(block);
}
```

    fn code block {
        /* Note the four leading spaces before each line. */
    }

Tables

Name    | Age
--------|------
Bob     | 27
Alice   | 23

Fractions

1/2

Dashes

--

---

Horizontal Rules

* * *

***

*****

- - -

---------------------------------------

Backslash Escapes

\*Literal Asterisks\*

Inline HTML

<h1>Heading 1</h1>

<table><tr><td>Table</td></tr></table>

<span>Span</span>

etc.