Hot answers tagged markdown
142
Most of these now work. My comment below has the following markdown source:
On [main], you are expected to write proper English (as advertised on [english.se]), but here on [metaso] it's more important to have freehand circles, so please [edit] your post, otherwise I'll have to flag you (see the [FAQ#flagging]). If you're unsure how to use your keyboard, ...
127
Note that this question is a bit obsolete, because we now infer prettify language type based on the tags.
See more:
Changes to syntax highlighting
This is now implemented. In addition to tag inference (a recent change), you can manually specify the language as a hint to Google Code Prettify.
The spec is:
<!-- language: lang-or-tag-here -->
...
83
--------------------------------------------------
| No | Sadly | There is none |
--------------------------------------------------
| Except this, which is a poor alternative |
--------------------------------------------------
| There really | should be one |
--------------------------------------------------
...
55
Use the
<kbd>
tag, like <kbd>Shift</kbd>+<kbd>Enter</kbd> for Shift+Enter.
After this answer was accepted, the <kbd> tag was disabled on Meta. It then still worked on SO, SF and SU. Meanwhile it has been enabled on Meta again as well.
46
Unfortunately, this is an ambiguity in the Markdown specification. This markdown source:
42. list item
more text
can mean two things. One of them is the one you're expecting: more text is following a blank line and indented by four spaces, making it a top-level (i.e. not part of the list) code block.
The second possible meaning is this:
List ...
46
If you do not want to use a pre-formatted block, there is still a way to do it inline.
From the “Code” section of the Markdown Documentation:
To include a literal backtick character within a code span, you can use multiple backticks as the opening and closing delimiters:
``There is a literal backtick (`) here.``
The above example renders like this ...
44
I've noticed that I usually have to add 8 spaces before any code instead of 4 spaces when it's code that appears as part of a list item.
<- 4 spaces
A list item (one blank line after this):
<- 8 spaces
42
This is real, and there's a reason for this. It's two-fold, actually.
First, there is a huge difference between a line break and a paragraph break. A line break is just that: The reading flow continues on the next line; your eyes automatically jump from the end of the previous line to the beginning of the next.
So the purpose of a line break is to not be ...
39
Depends which markdown library stackoverflow is using but this works on Reddit, maybe they should share notes.
| Left align | Right align | Center align |
|:-----------|------------:|:------------:|
| This | This | This
| column | column | column
| will | will | will
| be | be | ...
38
Actually, I use <sup> and <sub> to get the small text effect that I love so dearly.
But real, honest-to-goodness <small> support would be nicer. For one thing, this is actually a bit too small...
38
It is possible to use Markdown for both the image and the link. You'll have to do it manually because, as you said, the toolbar isn't smart enough to do it for you:
[![alt text][2]][1]
[1]: http://meta.stackoverflow.com/users/44330/jason-s
[2]: http://www.gravatar.com/avatar/dd57e..dfd07?s=128&d=identicon&r=PG (hover text)
31
The culprit was this tiny line in the Markdown specification:
If list items are separated by blank lines, Markdown will wrap the items in <p> tags in the HTML output.
Besides the fact that this is actually ambigous (Which item is wrapped in <p> tags? The one before the blank line? The one after it? Both? All of them, once there's a blank ...
30
Code is possible in markdown (see here) - you just have to leave a blank line and then indent by 8 spaces as a minimum.
example
this.isSomeCode = true;
30
I like this suggestion. I would really like to use this feature when making suggestions for new badges.
I have a few minor thoughts:
Don't force the syntax to only support existing badges.
The current markdown for tags allows for linking to tags which don't exist: excellent-suggestion-by-chris. My suspicion is that this is to minimize server load -- ...
28
I think I know why this issue is now being ignored for at least eight months (and counting).
First note that the languages worst affected seem to be Lisp and Perl, since they get their code partially greyed out by false-positive comment character matching (# and //). The next most disturbing group of mistakes is false string interpretation, affecting Lisp ...
25
Edit
Some more ideas, since this seems to be still active
Maybe it could alse be useful to add something like
[dupe:92060] for "possible duplicate of "
[inbox]
[review], but I think this is marginal
[privilege:name] to link to a specific privilege description
History
I think this idea can be improve in a generic way like:
[SITE:type:id#anchor]
...
25
If you're ever stuck on a Markdown question, there's a help button on the right side of the toolbar:
That help page explains how to do the simple case:
Advanced lists: Nesting
To put other Markdown blocks in a list; just indent four spaces for each nesting level
For example (see the markdown for this post):
Dog
German Shepherd
Belgian ...
24
Use four spaces before your code?
List`1
Or use double backticks as in List`1 .
It looks like this: ``List`1``
See http://daringfireball.net/projects/markdown/syntax, linked to from the formatting question box.
Note: Extra spacing will be necessary if you want to have a backtick at the end of your code, e.g., foo` . This will keep it from consuming ...
24
You need to escape the asterisks since they are involved in formatting in markdown.
<kbd>\*</kbd>
*
<kbd>\*\*</kbd>
**
Same applies to _ if you want to show the _ key.
23
Traditionally, these requests have been closed as dupes of Numbering/bullet interpretation bug?, but I'll keep this open since I think it's worth reconsidering. Even John Gruber's original Markdown documentation says
If you do use lazy list numbering, however, you should still start the list with the number 1. At some point in the future, Markdown may ...
22
Benefits
Compatibility with GitHub-Flavored Markdown and other Markdown libraries that support this de facto standard (and possibly its variants). This enables copy-pasting from gists or Markdown files within repositories, which can be useful on programming-related sites like Stack Overflow.
The triple backtick syntax is easier and faster to type than ...
21
Discourse on regular expressions ahead. If you don't care for such a thing, just know that this is fixed in the next build.
Ah yes, the neverending story of link-within-a-link creation. We have several unpretty hacks in place to prevent this in multiple areas. Could just add another one for this new case.
There's a few ways of fixing it, but all this ...
21
Not reading the page correctly is wrong. If you'd take the time and pay attention, only the small section inside the page is about comment formatting, while the entire page as a whole is about formatting in general.
When I view that page, it even surrounds all the relevant text with a nice lightly orange box, and includes a nice note the above section is ...
21
No, you don't need to know markdown. I've written this reply just using the buttons at the top of the edit box.
EvenMyCode() {...}
and
bullets
So what is the requirement to know markdown? There's even a
preview
Besides which, on "stackoverflow", allowing users to know markdown and type it directly is a pretty reasonable of making the users more ...
20
I had this problem before. See the linked thread for solutions. Basically, you need to indent by eight spaces (four for the list, four for the code), or insert some invisible text, such as a space between backticks.
20
We're now supporting the following syntax.
[tag:tag-name]
&
[meta-tag:tag-name]
Examples:
c#
feature-request
This is done on post submission*, and for now isn't reflected in the editor preview. Note that we aren't pulling in styling from the "parent" site either, though that may change in the future.
Furthermore, the meta-tag syntax is only ...
20
There isn't a need for markdown in comments. You shouldn't need emphasis, code formatting is not something you should be turning to mods for, and links are automatically hyperlinked if you just paste the URL. Spend less time (and characters!) prettifying the message, more time concisely telling us what's wrong. If you have to decorate your message, do it in ...
20
Use code blocks (4 spaces) with <!-- language: lang-none -->and NEVER use tabs inside them, as they can be misleading:
So this:
<!-- language: lang-none -->
--------------------------------------------
| colour |
--------------------------------------------
| colour_id | colour ...
19
I'll sort of mirror here the post I made on Coding Horror:
Hitting the carriage return key on a keyboard should give the user a new line in the output. This is simply typographical common sense.
A markup should not break elementary common sense rules in order to provide other elevated functionality.
The fact users use two carriage returns to create ...
18
If you want to add a block of code to a list item, you have to add an extra 4 spaces for every level of that list. You also have to make sure that you leave a blank line before the code block.
code block outside of a list
Main list
code block
sub list
code block
second code block
sub2 list
code block
sub3 list
code block
up two ...
Only top voted, non community-wiki answers of a minimum length are eligible