When I try to use
`hi another text`
it returns me hi another text - spaces are breaked.
|
The fact that non-breaking spaces render in html as separate characters rather than a single character is a side-effect of what Once you realize this, rendering spaces from inline code blocks using A better option would be to use U+2002 (en space) or U+2003 (em space): |
||||
|
|
|
Like most things that aren't needed often enough to be in the Markdown syntax, you can achieve this using HTML.
The result is You can also use the unicode non-breaking space character
The result is |
||||
|
|
|
You don't actually want non-breaking spaces; the results aren't pretty (this styling is meant to allow inline code, which depending on its position in the text may well need to be broken across multiple lines - spaces are a pretty good place to do this). You simply want the spaces to be preserved in the output, which the Markdown renderer does, but your browser does not. Adding the style,
...to the
You can see the difference here: after some text to push the code toward the end of the line |
|||||
|
{ }button in the markdown editor. It preserves multiple spaces. – Robert Harvey♦ Sep 22 '11 at 16:37<code>tags (which are generated by the backticks), multiple spaces are collapsed into one by your browser. – NullUserException อ_อ♦ Sep 22 '11 at 17:06