viewing revision from 4 years ago

WIKI TOOLS

-

commenting

viewhistorytalk

This page contains some of the more common formatting usages when commenting. For a complete list of all formatting usages, you may read the Reddit Markdown Primer or Comment Formatting.

Line Breaks

Individual line breaks are ignored, so if you type:

Hu Ha Hu Ha Hu Ha Hu Ha
Eh Meh Eh Meh Eh Meh Eh Meh

...you get:

Hu Ha Hu Ha Hu Ha Hu Ha Eh Meh Eh Meh Eh Meh Eh Meh

To display a line break in your post, put two spaces at the end of the line, or use a double line break to start a new paragraph.

Inserting a Blank Line

To insert a blank line, use the double line break mentioned above and put " ", then another double line break, will enter a single blank line:

First Line<Enter>
<Enter>

&nbsp;<Enter>

<Enter>
Second Line

Commenting

You can post comments on any saidit link, and read comments that other people have posted. You can even vote on them! Just like links, comments rise and fall in the rankings as people vote on them. The more Upvotes you get, the more your Comment Karma will go up.

Reading

saidit uses threaded comments — when you reply to someone's comment, it gets indented below it. **Collapse an entire comment tree by clicking the [–] on the first line of the parent comment.

Posting

You can format your comments using the Markdown syntax. Here is a quick reference table:

you type: you see:
*italics* italics
**bold** bold
super^script superscript
~~strikethrough~~ strikethrough
[saidit!](https://saidit.net) saidit!
(tab or 4 spaces)preformatted text Requires a blank line between the code and any normal text above. preformatted text
blah blah `inline code text` blah blah blah blah inline code text blah blah
\*escape the formatting syntax\* *escape the formatting syntax*

This table can also be accessed from any comment box by clicking the "help" link.

Superscripted text can also be enclosed in parentheses. Text inside the parentheses can include spaces and text after the closing parenthesis will not be superscripted, even if not separated by a space:

This is a sentence^(This is a note in superscript). This is a sentenceThis is a note in superscript.

For more advanced syntax options, see the Official Markdown Syntax.

Quotes

 > A fine quote

is displayed as

A fine quote

Tables

You can create a table by organizing pipes (|), hyphens (-) and text within a particular syntax. For example, inputting this:

Column A | Column B | Column C
---------|----------|----------
A1 | B1 | C1
A2 | B2 | C2

will display this:

Column A Column B Column C
A1 B1 C1
A2 B2 C2

To change the alignment of the elements in a column, add a colon (:) to the left side, right side, or both sides of the appropriate set of hyphens on the second line. For example, inputting this:

Column L | Column C | Column R
:--------|:--------:|---------:
A1 | B1 | C1
A2 | B2 | C2

will display this:

Column L Column C Column R
A1 B1 C1
A2 B2 C2

Note that in both cases, only one hyphen is needed between the pipes on the second line, and no spaces are needed to separate table elements from pipes on the third and fourth lines. Adding multiple hyphens and spaces may be useful for clarity, but they will not affect the final layout.

Lines with table syntax can be preceded with pipe characters, but this is entirely optional.

Be warned: pressing enter twice and putting blank lines between lines with table syntax will break table formatting.

Common issues

Numbering

If a number is followed by a period at the beginning of a line, Markdown interprets it as a numbered list and always starts at one. For example, if you typed "2009. What a year.", it will output as "1. What a year." To fix this, put a backslash in front of the period: "2009\. What a year."

An issue affects links to Wikipedia and websites with similar URLs. To link to:

http://en.wikipedia.org/wiki/Pica_(disorder)

escape the problematic characters "(" and ")" by adding backslashes in front:

http://en.wikipedia.org/wiki/Pica_\(disorder\)

The same applies to named links:

[Pica (disorder)](http://en.wikipedia.org/wiki/Pica_\(disorder\))

renders as:

Pica (disorder)

Starting Lines With The # Number Symbol

This is one number symbol

This is two number symbols

This is three number symbols

This is four number symbols

This is five number symbols
This is six number symbols
# This is seven number symbols
## This is eight number symbols
### This is nine number symbols
#### This is ten number symbols


revision by JasonCarswell— view source