In some markdown documentations they say that a newline is a new line, and two newlines is interpreted as a new paragraph.
But in Octopress one newline does nothing, and two newlines make a new paragraph. How can I have a single newline and not a paragraph in its markdown?
For example, if I start a bullet and have only one newline before it, it doesn't interpret it right, and the generated output is a continues text with no bullets. So currently I have to have:
sample text
* b1
* b2
instead of:
sample text
* b1
* b2
The latter is what I want to have, not the former. But the latter won't be interpreted correctly, or at least according to my expectation. The output I want to have would look like:
sample text
* b1
* b2
But what I get is:
sample text * b1 * b2
Do I have to change something in octopress settings, or what?
` in the output? Please show the expected output in your question. – ChrisGPT was on strike Jan 12 '14 at 14:06