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**

share|improve this question
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 '09 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 '09 at 2:27
1  
@Kyle I'm a bit confused as to the status of this... it's marked as "completed" but it's still broken in the same way as before, and the thread you linked is also marked as "completed". Was this actually a "wontfix"? – romkyns Mar 11 '11 at 5:24

closed as off topic by Jeff Atwood Jul 2 '09 at 2:23

Questions on Meta Stack Overflow are expected to generally relate to the Stack Exchange family of websites and/or community in some way, within the scope defined in the faq.

4 Answers

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

share|improve this answer

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

share|improve this answer
1  
Gosh I wish I were better at pointers now. – user3788 Dec 23 '09 at 17:35

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.

share|improve this answer

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.

share|improve this answer
1  
i guess this is for users who don't know to put backquotes around inline code? – Kip Jul 2 '09 at 2:26
3  
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 '09 at 3:11
So why does it work in the javascript preview then? – Michael Pryor Jul 2 '09 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. – user130231 Jul 2 '09 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 '09 at 8:25
1  
Jeff, you seem to have taken the Microsoft-patented "let's hold the poor little idiots' hands" approach to software design. That's rather disappointing. Intraword emphasis is legitimately useful (made-up example: the word is em**ph**asis, not em**f**asis), whereas underscore-joined names without backticks are not useful. When a user mistakenly types PLAIN_TEXT and sees PLAIN<i>TEXT</i> instead, it's easy to correct (it's a wiki. Just fix it), but when they type intra**word** emphasis and don't get it, it's not as easy to fix (<b> doesn't immediately come to mind). – P Daddy Dec 9 '09 at 23:45
1  
This "answer" maybe justifies disallowing intra-word underscore-emphasis. Maybe. (And only on the techie SE sites.) It in no way, shape, or form justifies disallowing intra-word emphasis via an asterisk. (Does any programming language even allow using asterisks in variable names?) – Marti May 18 '11 at 0:20

You must log in to answer this question.