Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the following code:

import Text.Pandoc

myWriterOptions = defaultWriterOptions 
    { writerHtml5 = True 
    , writerStrictMarkdown = False
    }

markdownToHtml :: String -> Html
markdownToHtml = writeHtml myWriterOptions . readMarkdown defaultParserState

If I apply it to a markdown string:
"header\n=======\nA line of text.\n### A list ###\n- apple\n- orange\n- pear"

I end up with:
"<h1 id=\"header\">header</h1>\n<p>A line of text. ### A list ### - apple - orange - pear</p>"

share|improve this question

1 Answer

up vote 4 down vote accepted

Your code looks fine to me, and so does the output. I get the same output from Try Pandoc.

If you add newlines before the second heading and list, then it produces the output you're looking for. I wouldn't be surprised if other Markdown implementations require blank lines, too; after all, it would be pretty annoying if starting a line with a hyphen started a new list (think line wrapping).

share|improve this answer
Okay, most other implementations do not require that, which is why I was confused. – qubital Mar 29 '12 at 17:45
Unfortunately, there's no formal specification of Markdown that I know of, so all the implementations are essentially imitating the original Perl implementation. You might want to report a bug if you think this behaviour is undesirable. – ehird Mar 29 '12 at 17:50
1  
@ehird You were correct so I guess it should come as no surprise to you, markdown's original description requires the blank lines: > "A paragraph is simply one or more consecutive lines of text,separated by one or more blank lines." [syntax][1] [1]: daringfireball.net/projects/markdown/syntax – dfc Apr 2 '12 at 22:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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