vote up 2 vote down star

Have a look at this answer http://stackoverflow.com/questions/1068191/xcode-whats-up-with-the-nib-xib/1071737#1071737

One of the bolds works, and the other one just turns up as ** in the actual post. However, the bold is correctly applied in the preview of the post.

This is the string that isn't working: xml n**ib**

flag
for clarity, could you put the original string, escaped in backquotes, then show us how it is rendered? I.e.: change the last line of this post to: The string "**x**ml n**ib**" gets rendered like this: x**ml n**ib – Kip Jul 2 at 2:21
We've been collecting markdown bugs in another thread, so I added this one meta.stackoverflow.com/questions/1227/… – Kyle Cronin Jul 2 at 2:27

closed as no longer relevant by Jeff Atwood Jul 2 at 2:23

4 Answers

vote up 2 vote down

THIS IS NOT A BUG.

THIS IS BY DESIGN.

It becomes very difficult to talk about code when

your_variable_names_are_suddenly_underlined

Intra-word emphasis is a bad idea and we have EXPLICITLY disabled it.

See: http://blog.stackoverflow.com/2008/06/three-markdown-gotcha/

1) Markdown’s single biggest flaw is its intra-word emphasis.

I don’t think anybody writes:

un*fricking*believable

often enough to justify making it nearly impossible to talk about tokens with underscores in them:

some_file_name

is interpreted as:

some<em>file</em>name

It even works across word boundaries:

file_one and file_two

becomes:

file<em>one and file</em> two

Whenever you’re writing tokens with underscores you have to make absolutely sure you’re in a backtick-delimited code span. The same problem will also nail you on equations like a*b*c, but that seems to pop up less frequently.

Showdown follows the reference implementation on all this, but in WMD I do a little preprocessing to hack the idiocy away: basically I just backslash-escape any underscores or asterisks that might trigger it. It’s a flagrant violation of the standard, but since it’s a pre-pass that should produce identical output with any Markdown processor, I feel justified. Unfortunately my hack did screw up one edge case (which I don’t have in front of me) and there isn’t any way to disable it. Both those things will change in the next release.

link|flag
1  
i guess this is for users who don't know to put backquotes around inline code? – Kip Jul 2 at 2:26
1  
Jeff: the problem that many of us have here isn't that the ** characters don't bold the text. It's that the behavior shown by the preview is different from the behavior shown after you post. That is what needs fixed. – Joel Coehoorn Jul 2 at 3:11
So why does it work in the javascript preview then? – Michael Pryor Jul 2 at 14:29
If I click the bold button in the editor, then I expect it to bold my text. If markdown can't do it, and html bold tags can, then the editor should be inserting bold tags. – Tom Jul 2 at 23:10
@Tom, if you feel strongly about it, you can submit patches to the repository: meta.stackoverflow.com/questions/1227/… – Jeff Atwood Jul 3 at 8:25
vote up 1 vote down

As a workaround, you could use "**x**ml n<b>ib</b>": xml nib

link|flag
vote up 0 vote down

A failing in the markdown parser. It starts a bold if the bold tag starts on a word boundary, but not inside a word.

Xml n**IB**

But it works in the preview box correctly, so the javascript parser is correct, the server side one is not.

link|flag
vote up 1 vote down

xml n ib
xml n**ib**
xml nib

Looks like it doesn't work when bolding partial words, which at times could be useful if you ever need to use ** inside another word sentence.

Unclear which would be better in this case, stats on how often ** is used? :p

a**b**c ab**c** abc

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.