0

我正在尝试使用降价写博客,并决定安装 redcarpet gem。一切看起来都很好,pygments.rb 在语法高亮方面做得很好,问题是,每当我尝试使用代码块放置代码块时,```我都会将所有行(第一行除外)缩进 6 个额外的空格。如何摆脱它?

application_helper.rb

module ApplicationHelper
  class HTMLwithPygments < Redcarpet::Render::HTML
    def block_code(code, language)
      Pygments.highlight(code, lexer: language)
    end
  end

  def markdown(content)
    renderer = HTMLwithPygments.new(hard_wrap: true, filter_html: true)
    options = {
      autolink: true,
      no_intra_emphasis: true,
      disable_indented_code_blocks: true,
      fenced_code_blocks: true,
      lax_html_blocks: true,
      strikethrough: true,
      superscript: true
    }
    Redcarpet::Markdown.new(renderer, options).render(content).html_safe
  end
end

发布视图 - show.html.haml

.container
  .show.title
    = @post.title
  .show.header
    = @post.header
  .show.created_at
    = @post.created_at
  .show.content
    = markdown @post.content

这就是代码在 sublime 中的样子:

崇高的代码

这是使用复制粘贴相同的代码来发布内容时呈现的帖子的样子:

复制粘贴到帖子内容后的代码

我正在使用带有 2 个空格缩进的 SublimeText3,视图采用 html.haml 格式。

这是帖子内容的确切输入:

```ruby
module ApplicationHelper
  class HTMLwithPygments < Redcarpet::Render::HTML
    def block_code(code, language)
      Pygments.highlight(code, lexer: language)
    end
  end

  def markdown(content)
    renderer = HTMLwithPygments.new(hard_wrap: true, filter_html: true)
    options = {
      autolink: true,
      no_intra_emphasis: true,
      disable_indented_code_blocks: true,
      fenced_code_blocks: true,
      lax_html_blocks: true,
      strikethrough: true,
      superscript: true
    }
    Redcarpet::Markdown.new(renderer, options).render(content).html_safe
  end
end
4

1 回答 1

1

这是由于 Haml 对块进行缩进以使输出的 HTML 格式整齐,这通常是人们想要的,但可能会导致此类对空格敏感的代码出现问题。

有几种方法可以修复它。首先,如果您使用设置为 true 的:ugly选项运行(在生产中应该是这种情况),那么额外的空格将不会添加到任何地方,您将获得所需的结果。

或者,您可以使用空格保留运算符~而不是=. 这会将块中的所有换行符转换为实体 ( &#x000A),因此不会添加额外的空格(因为没有要添加的换行符)。这将更改 HTML 生成,但在浏览器中查看时会显示为您想要的样子。

于 2016-03-20T14:06:22.783 回答