大胆的火球:列表降价不起作用

Daring fireball: List markdown not working

我正在使用 redcarpet 呈现我的降价文本。这是我正在使用的功能:

def markdown(text)
    render_options = { hard_wrap: true, filter_html: true }
    markdown_options = { autolink: true, no_intra_emphasis: true }
    markdown = Redcarpet::Markdown.new(
      Redcarpet::Render::HTML.new(render_options), markdown_options
    )
    markdown.render(text).html_safe
end

我无法用它呈现列表项。例如:

I am just a sentense
* list item 1
* list item 2

翻译成:

<p>
  <p>I am just a sentense<br>
     * list item 1<br>
     * list item 2</p>
</p>

但是,如果我不使用句子来开始我的文字,例如:

# head
* list me
* and me

一切似乎都很好:

<p>
  <h1>head</h1>
   <ul>
     <li>list me</li>
     <li>and me</li>
    </ul>
 </p>

我知道 redcarpet 使用 daring fireball 但似乎没有关于我遇到的问题的任何文档。

by design

A paragraph is simply one or more consecutive lines of text, separated by one or more blank lines.

也就是说,这被视为单个段落并相应地呈现。以空行结束段落,您将获得所需的输出。像这样:

I am just a sentense

* list item 1
* list item 2

更新:here is the implementation that GitHub uses。奇怪的是,他们也在使用 Redcarpet。配置必须和你的不一样。