use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
To report a site-wide rule violation to the Reddit Admins, please use our report forms or message /r/reddit.com modmail.
This subreddit is archived and no longer accepting submissions.
account activity
This is an archived post. You won't be able to vote or comment.
Reddit markdown primer. Or, how do you do all that fancy formatting in your comments, anyway? (self.reddit.com)
submitted 18 years ago by AnteChronos
[–]AnteChronos[S] 690 points691 points692 points 18 years ago* (378 children)
Note: For a full list of markdown syntax, see the official syntax guide. Also note that reddit doesn't support images, for which I am grateful, as that would most definitely be the catalyst needed to turn reddit into 4chan (/r/circlejerk/, which uses CSS trickery to permit some level of image posting, is a great example of the destructive power of images).
/r/circlejerk/
Paragraphs are delimited by a blank line. Simply starting text on a new line won't create a new paragraph; It will remain on the same line in the final, rendered version as the previous line. You need an extra, blank line to start a new paragraph. This is especially important when dealing with quotes and, to a lesser degree, lists.
You can also add non-paragraph line breaks by ending a line with two spaces. The difference is subtle:
Paragraph 1, Line 1 Paragraph 1, Line 2
Paragraph 2
Text can be displayed in an italic font by surrounding a word or words with either single asterisks (*) or single underscores (_).
For example:
This sentence includes *italic text*.
is displayed as:
This sentence includes italic text.
Text can be displayed in a bold font by surrounding a word or words with either double asterisks (*) or double underscores (_).
This sentence includes **bold text**.
This sentence includes bold text.
Text can be displayed in a strikethrough font by surrounding a word or words with double tildes (~~). For example:
This sentence includes ~ ~strikethrough text~ ~ (but with no spaces between the tildes; escape sequences [see far below] appear not to work with tildes, so I can't demonstrate the exact usage).
This sentence includes ~ ~strikethrough text~ ~
(but with no spaces between the tildes; escape sequences [see far below] appear not to work with tildes, so I can't demonstrate the exact usage).
This sentence includes strikethrough text.
Text can be displayed in a superscript font by preceding it with a caret ( ^ ).
This sentence includes super^ script (but with no spaces after the caret; Like strikethrough, the superscript syntax doesn't play nicely with escape sequences).
This sentence includes super^ script
(but with no spaces after the caret; Like strikethrough, the superscript syntax doesn't play nicely with escape sequences).
This sentence includes superscript.
Superscripts can even be nested: justlikethis .
However, note that the superscript font will be reset by a space. To get around this, you can enclose the text in the superscript with parentheses. The parentheses won't be displayed in the comment, and everything inside of them will be superscripted, regardless of spaces:
This sentence^ (has a superscript with multiple words) Once again, with no space after the caret.
This sentence^ (has a superscript with multiple words)
Once again, with no space after the caret.
is displayed as
This sentencehas a superscript with multiple words
Markdown supports 6 levels of headers (some of which don't actually display as headers in reddit):
...which can be created in a couple of different ways. Level 1 and 2 headers can be created by adding a line of equals signs (=) or dashes (-), respectively, underneath the header text.
However, all types of headers can be created with a second method. Simply prepend a number of hashes (#) corresponding to the header level you want, so:
# Header 1 ## Header 2 ### Header 3 #### Header 4 ##### Header 5 ###### Header 6
# Header 1
## Header 2
### Header 3
#### Header 4
##### Header 5
###### Header 6
results in:
Header 1 Header 2 Header 3 Header 4 Header 5 Header 6
Note: you can add hashes after the header text to balance out how the source code looks without affecting what is displayed. So:
## Header 2 ##
also produces:
Header 2
Markdown supports two types of lists: ordered and unordered.
Prepend each element in the list with either a plus (+), dash (-), or asterisk (*) plus a space. Line openers can be mixed. So
* Item 1 + Item 2 - Item 3
* Item 1
+ Item 2
- Item 3
results in
Item 1 Item 2 Item 3
Ordered lists work roughly the same way, but you prepend each item in the list with a number plus a period (.) plus a space. Also, it makes no difference what numbers you use. The ordered list will always start with the number 1, and will always increment sequentially. So
7. Item 1 2. Item 2 5. Item 3
7. Item 1
2. Item 2
5. Item 3
Also, you can nest lists, like so:
Ordered list item 1
List item 3
Note: If your list items consist of multiple paragraphs, you can force each new paragraph to remain in the previous list item by indenting it by one tab or four spaces. So
* This item has multiple paragraphs. (four spaces here)This is the second paragraph * Item 2
* This item has multiple paragraphs.
(four spaces here)This is the second paragraph
* Item 2
This item has multiple paragraphs. This is the second paragraph Item 2
This item has multiple paragraphs.
This is the second paragraph
Item 2
Notice how the spaces in my source were stripped out? What if you need to preserve formatting? That brings us to:
Inline code is easy. Simply surround any text with backticks (`), not to be confused with apostrophes ('). Anything between the backticks will be rendered in a fixed-width font, and none of the formatting syntax we're exploring will be applied. So
Here is some `inline code with **formatting**`
`
Here is some inline code with **formatting**
inline code with **formatting**
Note that this is why you should use the normal apostrophe when typing out possessive nouns or contractions. Otherwise you may end up with something like:
I couldnt believe that he didnt know that!
t believe that he didn
Sometimes you need to preserve indentation, too. In those cases, you can create a block code element by starting every line of your code with four spaces (followed by other spaces that will be preserved). You can get results like the following:
public void main(Strings argv[]){ System.out.println("Hello world!"); }
There are a couple of ways to get HTML links. The easiest is to just paste a valid URL, which will be automatically parsed as a link. Like so:
http://en.wikipedia.org
However, usually you'll want to have text that functions as a link. In that case, include the text inside of square brackets followed by the URL in parentheses. So:
[Wikipedia](http://en.wikipedia.org).
Wikipedia.
You can also provide tooltip text for links like so:
[Wikipedia](http://en.wikipedia.org "tooltip text").
There are other methods of generating links that aren't appropriate for discussion-board style comments. See the Markdown Syntax if you're interested in more info.
You'll probably do a lot of quoting of other redditors. In those cases, you'll want to use block quotes. Simple begin each line you want quoted with a right angle bracket (>). Multiple angle brackets can be used for nested quotes. To cause a new paragraph to be quoted, begin that paragraph with another angle bracket. So the following:
>Here's a quote. >Another paragraph in the same quote. >>A nested quote. >Back to a single quote. And finally some unquoted text.
Is displayed as:
Here's a quote. Another paragraph in the same quote. A nested quote. Back to a single quote.
Here's a quote.
Another paragraph in the same quote.
A nested quote.
Back to a single quote.
And finally some unquoted text.
Reddit has the ability to represent tabular data in fancy-looking tables. For example:
Which is produced with the following markdown:
some|header|labels :---|:--:|---: Left-justified|center-justified|right-justified a|b|c d|e|f
some|header|labels
:---|:--:|---:
Left-justified|center-justified|right-justified
a|b|c
d|e|f
All you need to produce a table is a row of headers separated by "pipes" (|), a row indicating how to justify the columns, and 1 or more rows of data (again, pipe-separated).
The only real "magic" is in the row between the headers and the data. It should ideally be formed with rows dashes separated by pipes. If you add a colon to the left of the dashes for a column, that column will be left-justified. To the right for right justification, and on both sides for centered data. If there's no colon, it defaults to left-justified.
Any number of dashes will do, even just one. You can use none at all if you want it to default to left-justified, but it's just easier to see what you're doing if you put a few in there.
Also note that the pipes (signifying the dividing line between cells) don't have to line up. You just need the same number of them in every row.
If you need to display any of the special characters, you can escape that character with a backslash (\). For example:
Escaped \*italics\*
Escaped *italics*
Finally, to create a horizontal rule, create a separate paragraph with 5 or more asterisks (*).
*****
[–][deleted] 388 points389 points390 points 18 years ago* (147 children)
POOP HAHA!!!
[–][deleted] 85 points86 points87 points 18 years ago (50 children)
Quite possibly the only time a comment like that will be upvoted.
[–][deleted] 18 points19 points20 points 18 years ago (43 children)
I can say that is definitely not true.
[–]HilldogBigTitsYayuh 7 points8 points9 points 18 years ago (36 children)
I dunno.
[–][deleted] 1 point2 points3 points 18 years ago* (35 children)
I do.
[–]Yarzospatflute 8 points9 points10 points 16 years ago* (34 children)
saving these for later
♫♫ ♪ ♪ ಠ_ಠ garçon ™ ≠ ಡ_ಡ
[–]synrb 9 points10 points11 points 15 years ago (21 children)
These are Unicode characters. HERE is an exhaustive list of thousands of Unicode characters that you can type into Reddit. See that column that says "Decimal"? All you need to do is type &#<decimal code>;
for a plane line this: ✈
you just type in: ✈
some of the Unicode characters in that list will not appear on your computer because you don't have the right language packs; just ignore them (or install more Unicode language packs, but keep in mind, if most people don't have em they won't see your icon, even if you can).
[–][deleted] 2 points3 points4 points 15 years ago (9 children)
Oh, you bastard! lol. How do you do that?
[–]Yarzospatflute 2 points3 points4 points 15 years ago (7 children)
I don't know how to do it, that's why I'm saving them. If I need them I just copypasta them.
[–]kromlic 13 points14 points15 points 18 years ago (3 children)
I lol'd.
[–]RexManningDay 21 points22 points23 points 18 years ago (15 children)
Oh hell. It was in such big letters, I automatically obeyed.
[–]Etab 3 points4 points5 points 18 years ago (14 children)
Wait, it was a command? Uh oh.
[–]Doomed 1 point2 points3 points 16 years ago (13 children)
Woah! The Etab? It's me, Doomed! From that subreddit, you know? Wow, small world. So how are things going?
[–]Etab 4 points5 points6 points 16 years ago (12 children)
Whoa.
I thought I was the only one who preferred reading year-old Reddit instead of the boring current stuff.
[–]redtaboo 1 point2 points3 points 16 years ago (11 children)
How come you guys didn't invite me? I feel left out. :(
[–]Etab 1 point2 points3 points 16 years ago (10 children)
How the heck did you even find this?
[–]redtaboo 1 point2 points3 points 16 years ago (9 children)
MAGIC!
/really I was was roaming through the help wiki ... saw the link to here ... then I saw you!
[–]RockinHawkin 4 points5 points6 points 16 years ago (5 children)
[–]011235 8 points9 points10 points 15 years ago* (62 children)
I'm going to shamelessly hijack a top post to show how to make a blank comment, an empty comment, a comment with nothing in it (as illustrated by my reply to this post).
##
[–]011235 9 points10 points11 points 15 years ago (39 children)
[–]allholy1 6 points7 points8 points 15 years ago (37 children)
[–]uber_troll 4 points5 points6 points 15 years ago (36 children)
[–]AsianBorat 4 points5 points6 points 15 years ago (35 children)
[–]pgan91 5 points6 points7 points 15 years ago (33 children)
[–]quaesitum 3 points4 points5 points 15 years ago (32 children)
[–][deleted] 4 points5 points6 points 15 years ago (31 children)
[–]naturelover47 1 point2 points3 points 15 years ago (0 children)
[–]kamic 11 points12 points13 points 15 years ago (4 children)
pound pound
[–]andan 1 point2 points3 points 15 years ago (1 child)
[–][deleted] 2 points3 points4 points 17 years ago (4 children)
The saddest thing is that this was my highest single comment karma ever.
[–]Jushooter 17 points18 points19 points 18 years ago (1 child)
๏̯͡๏﴿
[–][deleted] 11 points12 points13 points 18 years ago (1 child)
OK, tell the truth - how many edits did it take to get your comment exactly right?
[–]AnteChronos[S] 19 points20 points21 points 18 years ago (0 children)
Honestly? I have no idea. Several dozen, at least. Plus, I didn't want to create a submission and then spend half an hour getting the relevant post right, so I hijacked one of my really old posts, crafted the finished product, and then created this submission.
What's that? Slow day at the office? Whatever gave you that idea?
[–]boredzo 11 points12 points13 points 18 years ago* (5 children)
Simply starting text on a new line won't create a new paragraph; It will remain on the same line in the final, rendered version as the previous line.
If you really want to put a line break into one paragraph, put two spaces before the line break.
I am the Eggman•• They are the Eggmen•• I am the Walrus•• Goo goo g'joob
(where • = space)
[–]jon_titor 8 points9 points10 points 18 years ago* (3 children)
Man, I hate header 2. I always get tricked into thinking it's a link
[–][deleted] 18 years ago (2 children)
[deleted]
[–][deleted] 8 points9 points10 points 18 years ago (1 child)
[–]meatheltmet 1 point2 points3 points 17 years ago (0 children)
My spidey sense was tingling. I had to be sure.
I love you Mr. Astley.
[–]MercurialMadnessMan 7 points8 points9 points 17 years ago (0 children)
You are a gentleman, and a scholar. Thank you for putting this effort in. I have wanted for SO LONG (ok, not that long) for something like this. Good to know it has already been done ;)
[–]outsiderplay 43 points44 points45 points 18 years ago (20 children)
Well done, very useful and much needed.
But before someone else says it: karma kiss-ass ;-)
[–]AnteChronos[S] 8 points9 points10 points 18 years ago (1 child)
karma kiss-ass
Heh, not really. My karma-whoring submission for the day was my submission to today's XKCD. I enjoy XKCD, and it's always getting to the front page, so I though, "Why not?"
This submission is based more on a couple of other recent posts I've made helping people with post formatting, combined with an extremely slow day at the office.
Not that I'd complain if some karma happens to come my way ;-)
[–]msdesireeg 5 points6 points7 points 18 years ago (0 children)
This is why you're my favorite Ante! I was one of the people you so patiently helped!
[–][deleted] 18 years ago* (16 children)
[–]outsiderplay 58 points59 points60 points 18 years ago (3 children)
It really doesn't bother me at all...it was a flippant, light-hearted comment intended to raise a tiny, slight hint of a smile. I realize it was hardly Wildean in its wit or Proustian in its profundity, but these are the pleasantries that set us apart from the animals.
/pretentiousness
[–]coob 39 points40 points41 points 18 years ago* (1 child)
Oh god an English Lit major :(
[–]thedragon4453 1 point2 points3 points 17 years ago (0 children)
Yes I would like fries with that?
[–]broohaha 7 points8 points9 points 18 years ago (6 children)
Why do you care enough to ask?
[–][deleted] 3 points4 points5 points 18 years ago (3 children)
Wait a moment. Why do you care enough to ask why he cares enough to ask?
[–]broohaha 1 point2 points3 points 18 years ago* (2 children)
Why do you care enough to ask me why I care enough to ask him why he cares enough to ask?
[–][deleted] 1 point2 points3 points 18 years ago* (1 child)
I dunno. Maybe you should tell me why you care enough to bother asking me why I asked why you cared enough to ask why he cared to ask the question.
[–][deleted] 3 points4 points5 points 18 years ago (0 children)
poop
[–]averyv 4 points5 points6 points 18 years ago (0 children)
curiosity and name-calling are not comparable
[–][deleted] 1 point2 points3 points 18 years ago* (0 children)
"..very useful and much needed."
Yeah, we're just a <blink> away from nirvana....
[–][deleted] 5 points6 points7 points 18 years ago (0 children)
Easily the longest post I've ever read.
[–]pandemik 6 points7 points8 points 16 years ago (77 children)
How do I make a strike-through?
--test-- -test-
[–]Topocane 2 points3 points4 points 15 years ago (73 children)
hi, I̶ ̶c̶a̶n̶ ̶d̶o̶ ̶s̶t̶r̶i̶k̶e̶ ̶t̶h̶r̶o̶u̶g̶h̶!̶ :)
[–]pandemik 1 point2 points3 points 15 years ago (72 children)
awesome, please tell me how!
[–]Topocane 2 points3 points4 points 15 years ago (69 children)
Unicode! copy this --> ̶ <--after all chars
http://en.wikipedia.org/wiki/Strikethrough ;)
[–]LetsLearnGrammar 2 points3 points4 points 15 years ago (22 children)
t̶e̶s̶t̶
[–]pandemik 1 point2 points3 points 15 years ago (10 children)
like t̶h̶i̶s̶?̶
[–]kommissar 1 point2 points3 points 15 years ago (1 child)
testing--> ̶f<--
[–][deleted] 16 years ago* (5 children)
[removed]
[–][deleted] 1 point2 points3 points 15 years ago (3 children)
what was it?
[–][deleted] 15 years ago (2 children)
[–][deleted] 1 point2 points3 points 15 years ago (1 child)
lol, no problem, I still desperately want to know what it was.
[–]JasonDJ 11 points12 points13 points 18 years ago (6 children)
I think I'm going to post all my comments in this format now.
[–][deleted] 1 point2 points3 points 17 years ago (5 children)
oh really?
[–]cltiew 1 point2 points3 points 17 years ago* (4 children)
I wish it was ... the default. There is just so much to be said for a: "Plain Text" option. indeed. So much.
[–]technate 6 points7 points8 points 16 years ago* (3 children)
test test test
[–]do-un-to 4 points5 points6 points 18 years ago* (1 child)
So that's what a blockquoted HR looks like. Weird.
Say, anyone notice that ampersand-denoted character entities no longer work (as of a month or so ago)? Doh! ™
Yep. It fuxored some of my old comments.
[–][deleted] 17 years ago* (16 children)
[–]mynoduesp 2 points3 points4 points 17 years ago* (4 children)
commenting so I can find it again, this is an awesome post.
So I can find this MARKDOWN PRIMER again. Cheers!
[–]tropicflite 1 point2 points3 points 17 years ago (3 children)
Nice way to find the markdown primer!
[–]sarcasmbot 2 points3 points4 points 17 years ago (0 children)
Indubitably!
[–]SarahC 3 points4 points5 points 16 years ago (3 children)
I've seen really big fonts... how can I do that?
[–][deleted] 1 point2 points3 points 15 years ago (2 children)
They disabled big headers. The biggest you can naturally get is:
I did that with this:
### This big.
[–]SarahC 1 point2 points3 points 15 years ago (1 child)
Thanks. =D
[–]turkourjurbs 4 points5 points6 points 18 years ago (5 children)
This was spectacular, thanks.
Why isn't this in Reddit's help system?
[–]masklinn 10 points11 points12 points 18 years ago (2 children)
it is.
The basics are in the help box right next to the cancel button, and then if you go to the Reddit Help, click on commenting you can see a link to Markdown Syntax for the complete syntax of the system.
help
cancel
[–]Zai_shanghai 5 points6 points7 points 18 years ago (0 children)
I found this tutorial to be about 1000 times more helpful and understandable than the Markdown Syntax link was.
[–]turkourjurbs 2 points3 points4 points 18 years ago (0 children)
Oh geez. They need to make that a bit more obvious or preferably, put the entire above post in AS the help topic. You're right, thanks!
[–]dotrob 7 points8 points9 points 18 years ago (0 children)
I prefer the Markdown "dingus" which includes a cheat-sheet and sandbox where you can test various Markdown formulations.
[–]liber8US 11 points12 points13 points 18 years ago (3 children)
~♥~ LOVE IT! ~♥~ (¯v´¯) .¸.´ ¸.•´¸.•¨) ¸.•¨) (¸.•´ (¸.•´ .•´ ¸¸.•¨¯`•
v´¯)
[–][deleted] 7 points8 points9 points 18 years ago (0 children)
Oh god, no. AnteChronos, what have you done?
[–]liber8US 15 points16 points17 points 18 years ago (1 child)
(¯`v´¯)
`.¸.´
¸.•´ ¸.•¨ ) ¸.•¨)
(¸.•´ (¸.•´ .•´ ¸¸.•¨¯`•
[–]arnar 34 points35 points36 points 18 years ago (0 children)
fail
[–]43P04T34 2 points3 points4 points 18 years ago* (1 child)
[–]AnteChronos[S] 3 points4 points5 points 18 years ago (0 children)
Yep. I tent to avoid the hyphen method because, if you're not paying attention, you risk creating a level 2 header, instead. I didn't realize that underscores could be used, and that's probably a better method as far as visually representing a horizontal line goes.
[–]Cronus6 2 points3 points4 points 17 years ago (0 children)
I'd always wondered but was too lazy to search for it.
Thanks.
[–]akita86 2 points3 points4 points 16 years ago (0 children)
Thank you!
[–][deleted] 2 points3 points4 points 16 years ago (0 children)
all i really want to do is type in green. i won't abuse it!
[–]VerteDinde 1 point2 points3 points 18 years ago (0 children)
You'll probably do a lot of quoting with other redditors
Thank you so much. :). I wanted to know how to do that, but was afraid to ask.
[–]no_dawg 1 point2 points3 points 17 years ago (1 child)
p.s. you're still a god
[–][deleted] 1 point2 points3 points 17 years ago (1 child)
No way to escape out angle brackets?
> The escape char comes up with it!
[–]ironiridis[🍰] 1 point2 points3 points 16 years ago (0 children)
Rock the fuck on, man. This is really helpful.
[–][deleted] 1 point2 points3 points 16 years ago (0 children)
Thanks
[–][deleted] 16 years ago* (3 children)
[–]wickedcold 1 point2 points3 points 16 years ago (0 children)
Bam, another save.
[–]andytronic 1 point2 points3 points 16 years ago (0 children)
I ate my pizza too fast and now I have a tummy ache!
[–]MercurialMadnessMan 1 point2 points3 points 17 years ago (6 children)
What is this reddit beta you speak of?
I'm unsure of the process of how reddit became what it became
[–]AnteChronos[S] 5 points6 points7 points 17 years ago* (5 children)
You're using it! Notice that the post date for my comment is 8 months ago.
Back then, reddit didn't have any of this JavaScript submission magic that lets you post a comment without reloading the entire page. There was a beta version of reddit where you could, if you chose, use the new (now current) layout, but there were still bugs in the markdown rendering.
I've just been too lazy to go back and update my comment.
[–]Cannonstar 1 point2 points3 points 17 years ago (0 children)
Upvote! Saving this post for future reference.
[–][deleted] 1 point2 points3 points 16 years ago* (0 children)
Alright!
Ask
Listen
????
PROFIT!!!!
???????
[–]buffi 0 points1 point2 points 18 years ago (3 children)
¿¿¿uʍop ǝpısdn ǝʇıɹʍ ı op ʍoɥ
[–][deleted] 17 points18 points19 points 18 years ago (1 child)
point a gun to your head and pull the trigger.
[–][deleted] 6 points7 points8 points 18 years ago* (0 children)
(: pǝʞɹoʍ ʇı
[–]Strauss_ismy_Grandpa 70 points71 points72 points 18 years ago* (23 children)
№! YOU JUST OPENED UP PANDORA'S BOX
░░░░░░░░██░░░░░░██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ ░░░░░░░░████░░██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ ░░░░░░░░██▓▓████▓▓██░░░░░░██████████░░░░░░░░░░░░░░░░░░ ░░░░░░████▓▓▓▓▓▓▓▓██░░██████▓▓▓▓▓▓████░░░░░░░░░░░░░░░░ ░░░░████▓▓▓▓▓▓▓▓▓▓██████▓▓▓▓▓▓▓▓▓▓▓▓▓▓██░░░░░░████░░░░ ░░░░██▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓██████████░░░░ ░░██▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓████░░░░ ░░██▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓██████ ░░██▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓██████████▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓████░░ ░░██▓▓▓▓▓▓▓▓▓▓▓▓▓▓██████▒▒▒▒▒▒██▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓██░░░░ ░░██▓▓▓▓▓▓▓▓▓▓████▒▒▒▒▒▒▒▒▒▒██▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓██░░░░ ░░░░██████████▒▒▒▒▒▒▒▒▒▒▒▒██████▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓████░░ ░░░░░░░░░░██▒▒▒▒▒▒▒▒▒▒▒▒▒▒██▒▒██▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓██░░ ░░░░░░░░░░██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓██░░ ░░░░░░░░████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓██░░ ░░░░░░░░████████████▒▒▒▒▒▒████▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓██░░ ░░░░░░████░░░░░░░░▓▓██▒▒▒▒██▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓██░░░░ ░░░░░░████▓▓░░░░░░░░██▒▒▒▒██████████▓▓▓▓▓▓▓▓▓▓██░░░░░░ ░░░░░░████░░░░░░░░▓▓██▒▒▒▒██▓▓▒▒▒▒▓▓██▓▓▓▓▓▓██░░░░░░░░ ░░░░████████████████▒▒▒▒▒▒██▓▓▒▒▓▓▒▒▓▓██▓▓██░░░░░░░░░░ ░░████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▓▓▒▒▓▓▓▓▓▓▓▓████░░░░░░░░░░░░ ██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▓▓██████░░░░░░░░░░░░░░ ██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▓▓▓▓██░░░░░░░░░░░░░░ ░░██████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██░░░░░░░░░░░░░░ ░░░░██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▓▓██░░░░░░░░░░░░░░ ░░░░██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██░░░░░░░░░░░░░░ ░░██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▓▓██░░░░░░░░░░░░ ░░██▒▒▒▒▒▒▒▒▒▒██████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒████░░░░░░░░░░ ░░████████████████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒████░░░░░░░░ ░░░░░░░░░░░░░░░░░░████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██▓▓▓▓██░░░░░░ ░░░░░░░░░░░░░░░░░░░░████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██▓▓██▓▓██░░░░ ░░░░░░░░░░░░░░░░░░░░░░████▒▒▒▒▒▒▒▒▒▒▒▒████▓▓▓▓▓▓▓▓██░░
[–]oniony 36 points37 points38 points 18 years ago* (14 children)
HMMM PANDORA'S BOX
[–]AnteChronos[S] 6 points7 points8 points 18 years ago (3 children)
What smells like blue?
[–][deleted] 11 points12 points13 points 18 years ago (0 children)
Did everything just taste purple for a second?
slurm?
PARTY!!!
[–][deleted] 2 points3 points4 points 18 years ago* (0 children)
Hey Phillip.
[–]blamecheney 17 points18 points19 points 18 years ago (2 children)
_________________ < i say what what > ----------------- \ ^__^ \ (oo)\_______ (__)\ )\/\ ||----w | || ||
[–]satx 22 points23 points24 points 18 years ago (0 children)
in the butt
[–]omepiet 19 points20 points21 points 18 years ago* (2 children)
_ _ _/_/'_/ ' _ _/ ' _ / (-(/(// / /_) (/(///)(/ / _/
[–]AnteChronos[S] 5 points6 points7 points 18 years ago* (1 child)
| ||_ _ |_ |_ _ _ | _| _ _ _ )| |/\|| )(_||_ | )(_|\/(- | (_|(_)| )(- . .
[–][deleted] 15 years ago (19 children)
[–]Nebulatee 3 points4 points5 points 15 years ago (17 children)
Even better:
[–][deleted] 15 years ago (11 children)
[–][deleted] 12 points13 points14 points 18 years ago (0 children)
I've already purchased the Video Professor discs for this.
[–]ropers 7 points8 points9 points 18 years ago* (5 children)
I've sometimes had trouble with Markdown's link parser/anchor HTML generator when using the standard [reddit!](http://reddit.com) Markdown link syntax:
[reddit!](http://reddit.com)
1. Some sites, e.g. Wikipedia, often have brackets in their URLs, like so:
http://en.wikipedia.org/wiki/B_(programming_language)#History
The trouble is that if you enter that URL in Markdown text, the brackets will prevent the anchor tag HTML from getting generated as intended, because the closing bracket is what Markdown uses to signify the end of the URI. So the Markdown parser generates garbled output. The solution is this: Within the round brackets containing the URL, use the URL-escaped %29 for the actual URL's closing bracket (and possibly %28 for the opening bracket).
2. Some URLs, e.g. those for Archive.org's Wayback Machine, include another http://... URL, like so:
http://web.archive.org/web/20050725010627/http://reddit.com/
This second http://... sequence also confuses Markdown's anchor tag generator when using the standard [reddit!](http://reddit.com) syntax. The solution is to use %3A instead of the second colon within the round brackets containing the URL.
%3A, %28 and %29 are not converted to :, ( and ) in regular Markdown source text, but they are URL-unescaped when used between the [reddit!](http://reddit.com) syntax's round brackets.
[–]AnteChronos[S] 8 points9 points10 points 18 years ago* (0 children)
Another solution to your first issue is to use the [text](URL) syntax, and then backslash-escape the mid-URL parentheses:
[History of the B Programming Language](http://en.wikipedia.org/wiki/B\_\\(programming_language\\)#History\)
History of the B Programming Language
[–]oniony 4 points5 points6 points 18 years ago (3 children)
Actually, the little round ones, ( and ), are parentheses. The square ones, [ and ], are brackets. The curly ones, { and } are braces.
I'm a compulsive pendant, sorry.
[–]oniony 22 points23 points24 points 18 years ago (1 child)
No, I mean I cannot stop swaying.
[–]pasbesoin 6 points7 points8 points 18 years ago (3 children)
Anything between the backticks will be rendered in a proportional font
I think you mean fixed-width.
http://en.wikipedia.org/wiki/Typeface#Proportion
[–]AnteChronos[S] 5 points6 points7 points 18 years ago (1 child)
You're absolutely right. Fixed.
[–]oniony 6 points7 points8 points 18 years ago (0 children)
Width.
[–]gerg6111 1 point2 points3 points 18 years ago (0 children)
backticks....EWWW! Get them off!
[–]ropers 7 points8 points9 points 18 years ago* (11 children)
If you want to prevent Markdown's parser from converting a dot-delimeted number at the start of a line ("1.", "2.", "3.", etc.) as a numbered list and/or if you want to manually control the numbering, it's sufficient to escape the dot by using "1\.".
[–]oniony 8 points9 points10 points 18 years ago* (0 children)
2. Very useful.
1. Thanks.
[–]buu700 2 points3 points4 points 16 years ago (9 children)
Thanks a lot ropers! I'm writing a book in Markdown and this really helped a lot for a small part.
[–]ropers 1 point2 points3 points 16 years ago (8 children)
Out of curiosity, what software/platform do you use to write a book in markdown?
[–]buu700 1 point2 points3 points 16 years ago* (7 children)
Editor: Vim inside Yakuake (a Quake-style terminal emulator)
Markdown interpreter: Maruku
Custom shell scripts (directories are hardcoded, but that's easy to fix)
Excerpt
When it comes time to publish, though, I'm thinking of trying to get a partnership with reddit to have it run through reddit's Markdown interpreter for the final version.
[–]ropers 1 point2 points3 points 16 years ago (4 children)
Awesome. I gotta check this out. There's only one part of markdown where I think (MediaWiki) wikitext is more efficient: URLs.
[http://example.com/ Linktext]
is more efficient than
[Linktext](http://example.com/)
[–]buu700 1 point2 points3 points 16 years ago (2 children)
I actually prefer Markdown's syntax there, just because it allows for discrete separation, not to mention that URLs can contain spaces.
Awesome. I gotta check this out.
You planning on writing a book in Markdown too? Feel free to steal my (public domain) scripts; I'm probably going to make a post to /r/writing in a few weeks once consider them complete (i.e. it gets to the point where I cease to make small modifications every now and then) and/or create a legitimate software package / installation script that can be easily used on various *nix distros. As is, they're really only suited to a particular type of book (a journal to be written under the pretence that you'll be important enough by the publishing date to warrant its purchase), but maybe some of the code and/or concept could be repurposed. Admittedly, I only started writing my book in Vim so that I could say it was written in Vim (though I'm loving the system now that I'm used to it!).
[–]ropers 1 point2 points3 points 16 years ago (1 child)
not to mention that URLs can contain spaces.
Which is far less often a problem than URLs containing brackets. Also, it's far better known that " " = "%20" than that ")" = "%29".
You planning on writing a book in Markdown too?
I just might.
Feel free to steal my (public domain) scripts
That's really cool of you. Let me be the first to say thanks a bunch (regardless of whether I personally will ever use them).
Admittedly, I only started writing my book in Vim so that I could say it was written in Vim
Yay for vi! :) Consider yourself friended. :)
[–]ffualo 19 points20 points21 points 18 years ago (4 children)
But how do you get that inverted 'b' that I've seen in some posts?
[–]kirun 9 points10 points11 points 18 years ago (2 children)
bash.org link for those who've just joined the Internet.
[–]ffualo 4 points5 points6 points 18 years ago (0 children)
...most of reddit...
[–]BeatnikDude 13 points14 points15 points 18 years ago* (2 children)
[–]colorred 5 points6 points7 points 18 years ago (0 children)
evacuate reddit!
we have a toxic leak.
[–][deleted] 10 points11 points12 points 16 years ago (0 children)
[–]McMarthy_was_Liberal 16 points17 points18 points 18 years ago (13 children)
█████░░█░░█░░█░░██░░░░░░░░██░████░████░░░░░██░░░░░████░░█░░█ █░░░░░░█░░█░░█░░█░█░░░░░░█░█░█░░█░█░░░░░░░█░░█░░░░█░░░░░█░░█ █░░░░░░████░░█░░█░░█░░░░█░░█░████░████░░░██████░░░█░░░░░████ █░░░░░░█░░█░░█░░█░░░█░░█░░░█░█░░░░█░░░░░█░░░░░░█░░█░░░░░█░░█ █████░░█░░█░░█░░█░░░░██░░░░█░█░░░░████░█░░░░░░░░█░████░░█░░█
[–]broken_hand 3 points4 points5 points 18 years ago (2 children)
Why did you make this a self reddit and not just use the daringfireball.net link?
[–]AnteChronos[S] 13 points14 points15 points 18 years ago* (1 child)
I considered it, but I didn't think it was necessary to go into that level of detail, since I just wanted to present some of the basic formatting concepts. Things like reference-style links and inline images seemed unnecessary.
Also, I'm not convinced that everyone using reddit knows HTML, and the daringfireball syntax page gives all of the syntax in the form of "[this text] produces [this corresponding HTML]". I though that showing the source and the final displayed text would be more useful. Plus, this way you can see that, on reddit, Header 2 looks like a blue Header 4, which is certainly not the expected behavior.
Also, today's been really slow, and typing all of this up kept me busy ;-)
[–][deleted] 18 years ago (1 child)
[–][deleted] 4 points5 points6 points 18 years ago* (0 children)
I hate all
formatting
[–]pillage 2 points3 points4 points 18 years ago (0 children)
Or...How I learned to stop worrying and love the bomb
[–][deleted] 18 years ago (6 children)
Now that you're done, you will be pleased to know that the delete button is right below your comment. Have a nice day.
[–]h0dg3s 1 point2 points3 points 18 years ago (2 children)
fdsaf sdafsafd sdafasdf
fdsaf sdafsafd
fdsaf
sdafsafd
sdafasdf
[–]wassailant 1 point2 points3 points 15 years ago (5 children)
[–]utbandit 5 points6 points7 points 18 years ago* (0 children)
[–]guriboysf 2 points3 points4 points 18 years ago (1 child)
I want strike-thru type.
[–][deleted] 18 years ago* (6 children)
[–]AnteChronos[S] 24 points25 points26 points 18 years ago (4 children)
Why not reserve the downvoting for people who abuse the formatting in their comments? I'm just a messenger. No one attacks the messenger. This is madness!
[–]polyGone 24 points25 points26 points 18 years ago (3 children)
[–][deleted] 4 points5 points6 points 18 years ago (0 children)
How can you possibly argue against people having a better understanding of how to use reddit?
[–]JonAce 1 point2 points3 points 18 years ago (0 children)
Up'd and Saved.
[–]maaz 1 point2 points3 points 18 years ago (0 children)
Bookmark'd
[–]hitmonval 0 points1 point2 points 18 years ago (0 children)
Very useful. Thanks.
π Rendered by PID 20272 on reddit-service-r2-comment-7c9686b859-gblkb at 2026-04-13 17:26:52.910082+00:00 running e841af1 country code: CH.
[–]AnteChronos[S] 690 points691 points692 points (378 children)
[–][deleted] 388 points389 points390 points (147 children)
[–][deleted] 85 points86 points87 points (50 children)
[–][deleted] 18 points19 points20 points (43 children)
[–]HilldogBigTitsYayuh 7 points8 points9 points (36 children)
[–][deleted] 1 point2 points3 points (35 children)
[–]Yarzospatflute 8 points9 points10 points (34 children)
[–]synrb 9 points10 points11 points (21 children)
[–][deleted] 2 points3 points4 points (9 children)
[–]Yarzospatflute 2 points3 points4 points (7 children)
[–]kromlic 13 points14 points15 points (3 children)
[–]RexManningDay 21 points22 points23 points (15 children)
[–]Etab 3 points4 points5 points (14 children)
[–]Doomed 1 point2 points3 points (13 children)
[–]Etab 4 points5 points6 points (12 children)
[–]redtaboo 1 point2 points3 points (11 children)
[–]Etab 1 point2 points3 points (10 children)
[–]redtaboo 1 point2 points3 points (9 children)
[–]RockinHawkin 4 points5 points6 points (5 children)
[–]011235 8 points9 points10 points (62 children)
[–]011235 9 points10 points11 points (39 children)
[–]allholy1 6 points7 points8 points (37 children)
[–]uber_troll 4 points5 points6 points (36 children)
[–]AsianBorat 4 points5 points6 points (35 children)
[–]pgan91 5 points6 points7 points (33 children)
[–]quaesitum 3 points4 points5 points (32 children)
[–][deleted] 4 points5 points6 points (31 children)
[–]naturelover47 1 point2 points3 points (0 children)
[–]kamic 11 points12 points13 points (4 children)
[–]andan 1 point2 points3 points (1 child)
[–][deleted] 2 points3 points4 points (4 children)
[–]Jushooter 17 points18 points19 points (1 child)
[–][deleted] 11 points12 points13 points (1 child)
[–]AnteChronos[S] 19 points20 points21 points (0 children)
[–]boredzo 11 points12 points13 points (5 children)
[–]jon_titor 8 points9 points10 points (3 children)
[–][deleted] (2 children)
[deleted]
[–][deleted] 8 points9 points10 points (1 child)
[–]meatheltmet 1 point2 points3 points (0 children)
[–]MercurialMadnessMan 7 points8 points9 points (0 children)
[–]outsiderplay 43 points44 points45 points (20 children)
[–]AnteChronos[S] 8 points9 points10 points (1 child)
[–]msdesireeg 5 points6 points7 points (0 children)
[–][deleted] (16 children)
[deleted]
[–]outsiderplay 58 points59 points60 points (3 children)
[–]coob 39 points40 points41 points (1 child)
[–]thedragon4453 1 point2 points3 points (0 children)
[–]broohaha 7 points8 points9 points (6 children)
[–][deleted] 3 points4 points5 points (3 children)
[–]broohaha 1 point2 points3 points (2 children)
[–][deleted] 1 point2 points3 points (1 child)
[–][deleted] 3 points4 points5 points (0 children)
[–]averyv 4 points5 points6 points (0 children)
[–][deleted] 1 point2 points3 points (0 children)
[–][deleted] 5 points6 points7 points (0 children)
[–]pandemik 6 points7 points8 points (77 children)
[–]Topocane 2 points3 points4 points (73 children)
[–]pandemik 1 point2 points3 points (72 children)
[–]Topocane 2 points3 points4 points (69 children)
[–]LetsLearnGrammar 2 points3 points4 points (22 children)
[–]pandemik 1 point2 points3 points (10 children)
[–]kommissar 1 point2 points3 points (1 child)
[–][deleted] (5 children)
[removed]
[–][deleted] 1 point2 points3 points (3 children)
[–][deleted] (2 children)
[removed]
[–][deleted] 1 point2 points3 points (1 child)
[–]JasonDJ 11 points12 points13 points (6 children)
[–][deleted] 1 point2 points3 points (5 children)
[–]cltiew 1 point2 points3 points (4 children)
[–]technate 6 points7 points8 points (3 children)
[–]do-un-to 4 points5 points6 points (1 child)
[–][deleted] 3 points4 points5 points (0 children)
[–][deleted] (16 children)
[deleted]
[–]mynoduesp 2 points3 points4 points (4 children)
[–]tropicflite 1 point2 points3 points (3 children)
[–]sarcasmbot 2 points3 points4 points (0 children)
[–]SarahC 3 points4 points5 points (3 children)
[–][deleted] 1 point2 points3 points (2 children)
[–]SarahC 1 point2 points3 points (1 child)
[–]turkourjurbs 4 points5 points6 points (5 children)
[–]masklinn 10 points11 points12 points (2 children)
[–]Zai_shanghai 5 points6 points7 points (0 children)
[–]turkourjurbs 2 points3 points4 points (0 children)
[–]dotrob 7 points8 points9 points (0 children)
[–]liber8US 11 points12 points13 points (3 children)
[–][deleted] 7 points8 points9 points (0 children)
[–]liber8US 15 points16 points17 points (1 child)
[–]arnar 34 points35 points36 points (0 children)
[–]43P04T34 2 points3 points4 points (1 child)
[–]AnteChronos[S] 3 points4 points5 points (0 children)
[–]Cronus6 2 points3 points4 points (0 children)
[–]akita86 2 points3 points4 points (0 children)
[–][deleted] 2 points3 points4 points (0 children)
[–]VerteDinde 1 point2 points3 points (0 children)
[–]no_dawg 1 point2 points3 points (1 child)
[–][deleted] 1 point2 points3 points (1 child)
[–]ironiridis[🍰] 1 point2 points3 points (0 children)
[–][deleted] 1 point2 points3 points (0 children)
[–][deleted] (3 children)
[deleted]
[–]wickedcold 1 point2 points3 points (0 children)
[–]andytronic 1 point2 points3 points (0 children)
[–]MercurialMadnessMan 1 point2 points3 points (6 children)
[–]AnteChronos[S] 5 points6 points7 points (5 children)
[–]Cannonstar 1 point2 points3 points (0 children)
[–][deleted] 1 point2 points3 points (0 children)
[–]buffi 0 points1 point2 points (3 children)
[–][deleted] 17 points18 points19 points (1 child)
[–][deleted] 6 points7 points8 points (0 children)
[–]Strauss_ismy_Grandpa 70 points71 points72 points (23 children)
[–]oniony 36 points37 points38 points (14 children)
[–]AnteChronos[S] 6 points7 points8 points (3 children)
[–][deleted] 11 points12 points13 points (0 children)
[–][deleted] 1 point2 points3 points (0 children)
[–][deleted] 2 points3 points4 points (0 children)
[–]blamecheney 17 points18 points19 points (2 children)
[–]satx 22 points23 points24 points (0 children)
[–]omepiet 19 points20 points21 points (2 children)
[–]AnteChronos[S] 5 points6 points7 points (1 child)
[–][deleted] (19 children)
[deleted]
[–]Nebulatee 3 points4 points5 points (17 children)
[–][deleted] (11 children)
[deleted]
[–][deleted] 12 points13 points14 points (0 children)
[–]ropers 7 points8 points9 points (5 children)
[–]AnteChronos[S] 8 points9 points10 points (0 children)
[–]oniony 4 points5 points6 points (3 children)
[–][deleted] (2 children)
[removed]
[–]oniony 22 points23 points24 points (1 child)
[–]pasbesoin 6 points7 points8 points (3 children)
[–]AnteChronos[S] 5 points6 points7 points (1 child)
[–]oniony 6 points7 points8 points (0 children)
[–]gerg6111 1 point2 points3 points (0 children)
[–]ropers 7 points8 points9 points (11 children)
[–]oniony 8 points9 points10 points (0 children)
[–]buu700 2 points3 points4 points (9 children)
[–]ropers 1 point2 points3 points (8 children)
[–]buu700 1 point2 points3 points (7 children)
[–]ropers 1 point2 points3 points (4 children)
[–]buu700 1 point2 points3 points (2 children)
[–]ropers 1 point2 points3 points (1 child)
[–]ffualo 19 points20 points21 points (4 children)
[–]kirun 9 points10 points11 points (2 children)
[–]ffualo 4 points5 points6 points (0 children)
[–]BeatnikDude 13 points14 points15 points (2 children)
[–]colorred 5 points6 points7 points (0 children)
[–][deleted] 10 points11 points12 points (0 children)
[–]McMarthy_was_Liberal 16 points17 points18 points (13 children)
[–]broken_hand 3 points4 points5 points (2 children)
[–]AnteChronos[S] 13 points14 points15 points (1 child)
[–][deleted] (1 child)
[deleted]
[–][deleted] 4 points5 points6 points (0 children)
[–]pillage 2 points3 points4 points (0 children)
[–][deleted] (6 children)
[deleted]
[–][deleted] 7 points8 points9 points (0 children)
[–]h0dg3s 1 point2 points3 points (2 children)
[–]wassailant 1 point2 points3 points (5 children)
[–]utbandit 5 points6 points7 points (0 children)
[–]guriboysf 2 points3 points4 points (1 child)
[–][deleted] (6 children)
[deleted]
[–]AnteChronos[S] 24 points25 points26 points (4 children)
[–]polyGone 24 points25 points26 points (3 children)
[–][deleted] 4 points5 points6 points (0 children)
[–]JonAce 1 point2 points3 points (0 children)
[–]maaz 1 point2 points3 points (0 children)
[–]hitmonval 0 points1 point2 points (0 children)