For questions about the use of inline code, activated by surrounding text with backticks in Markdown.

learn more… | top users | synonyms

15
votes
1answer
113 views

URLs are linked despite being inside a code span

Markdown source: `http://google.com` - `http://google.com` - `http://google.com` Rendered result: http://google.com http://google.com http://google.com Note that the third code span is ...
4
votes
2answers
154 views

How do I escape backticks surrounding an inline code block? [duplicate]

Possible Duplicate: How can the backtick character ` be included in code? How do I do something like this: `order` But within a `line? <-- as you see over here I was able to get the ...
0
votes
1answer
76 views

How can I put a space at the end of an inline code block?

I'm trying to put "dir " in an inline code section, and `dir ` doesn't work. When I do this, the result looks like this: dir (no space at the end). How can I put a space at the end of an inline code ...
48
votes
4answers
483 views

Inline Code Spans should not be used for emphasis, right?

When reviewing Suggested Edits on Stack Overflow, I often come across "fixed formatting" suggestions that use inline code spans to place emphasis on certain keywords, but isn't actual code. For ...
2
votes
1answer
55 views

Since when are URLs parsed inside an inline code block?

I just ran across this post which had been flagged for a broken link to example.com... I'd like to see the `[Foobar](http://www.example.com)` URL markdown in comments. That's all it is. For some ...
5
votes
2answers
218 views

How can I write inline code ending in a backtick (`)?

How can I write inline code (e.g. in a comment) ending in a backtick, without adding an extra space at the end? I know that backticks can be included if the code is surrounded by double backticks, ...
22
votes
1answer
255 views

My suggested edit rejected because I pulled in jsFiddle code

The following suggested edit, in which I copied code from a linked jsFiddle into a question but left the link to that jsFiddle intact, was rejected and one reviewer's reason was "Do not inline ...
1
vote
1answer
574 views

Inline code markdown is handled differently in questions/answers and comments

In questions/answers, to put backticks within my inline code I have to enclose the whole thing in double backticks. ``cd `brew --prefix` `` In comments I can escape backticks with backslashes. I ...
1
vote
1answer
410 views

Can you put code snippets in comments?

I tried to do this today, and whenever I hit Return to get to the line where I want to put the comment, the editor thinks I'm done with the comment as if I'd hit Enter to mean "I'm done", instead of ...
0
votes
1answer
163 views

Problem with double backticks for marking inline code

In this post over at tex.sx I'm trying to explain how one can mark inline code. To show backticks in inline code, I enclose the code in double backticks ``, and mostly this works. However, the very ...
-1
votes
2answers
569 views

stackoverflow inline code

Hello everyone, I'm a stackoverflow n00b, but I believe it's an invaluable resource, and really has been so far to my deving on different projects. Anyway, I have seen users write inline code. In ...
17
votes
0answers
171 views

Inconsistent padding of inline code

Looking at the following screenshot of this answer, you'll notice a slight difference in padding of inline code inside normal paragraphs and that of code inside of lists: The same is true for ...
1
vote
1answer
191 views

“Inline code” button for the editor

I see bold and italics button but no inline code while it uses quite an uncommon syntax (back ticks, `` - the syntax is good, just not very obvious). It would be convenient to have this button. ...
31
votes
8answers
536 views

Formatting of inline code is ugly and can result in river-like patterns when used frequently

This has bothered me for a while... Ever since the bulky padding and gray background were added to <code> elements, really. But I kept hoping I would get used to it... ...I didn't. It's ugly, ...
0
votes
3answers
165 views

Request to add inline code and monospace font

The title says it all. Could StackOverflow have the ability to insert "inlined code", as well as change the format of code blocks to be the browser's default monospace font?
12
votes
6answers
478 views

Code-Coloring for Inline-Code in Answers

Is there a reason that inline-code (with ``, of course) in answers is excluded from the prettify-process? Sometimes a piece of code is a bit too small to be blessed with its own blockquote, and so ...