标签: github pull-request
当我想要显示代码块时,键入HTML不起作用。
答案 0 :(得分:2)
如 documentation 中所述,请在自己的行上使用三重反引号。 (可选)您可以在其旁边添加语言,以激活语法高亮模式。
```ruby require 'redcarpet' markdown = Redcarpet.new("Hello World!") puts markdown.to_html ```