0

我正在尝试在我的项目中使用 CodeRay,它似乎可以正常工作,但是样式和格式似乎很混乱:

Coderay 乱码

请注意,我将 CodeRay 与 Markdown (Redcarpet) 结合使用。我在我的 gemfile 中添加了两个 gem,并在其中app/helpers/application_helper.rb添加了以下内容:

class CodeRayify < Redcarpet::Render::HTML
    def block_code(code, language)
        CodeRay.scan(code, language).div(:line_numbers => :inline)
    end
end

def markdown(text)
    coderayified = CodeRayify.new(:filter_html => true, :hard_wrap => true)

    language ||= :plaintext

    options = {
        :fenced_code_blocks => true,
        :no_intra_emphasis => false,
        :autolink => true,
        :strikethrough => true,
        :lax_html_blocks => true,
        :superscript => true
    }

    markdown_to_html = Redcarpet::Markdown.new(coderayified, options)
    markdown_to_html.render(text).html_safe
end

正如您在随附的屏幕截图中看到的那样,它确实有效。问题是格式。有任何想法吗?

4

2 回答 2

1

您是否尝试过使用 table for line_numbers 而不是 inline?

module ApplicationHelper
 class CodeRayify < Redcarpet::Render::HTML
  def block_code(code, language)
    CodeRay.scan(code, language).div(:line_numbers => :table)
  end
end

def markdown(text)
  coderayified = CodeRayify.new(:filter_html => true, 
                                :hard_wrap => true)
  options = {
    :fenced_code_blocks => true,
    :no_intra_emphasis => true,
    :autolink => true,
    :strikethrough => true,
    :lax_html_blocks => true,
    :superscript => true
  }
  markdown_to_html = Redcarpet::Markdown.new(coderayified, options)
  markdown_to_html.render(text).html_safe
 end
end
于 2015-10-29T17:42:09.033 回答
0

我还注意到 CodeRay 存储库附带的当前 CSS 在移动/平板电脑设计上响应不佳。

要修复,请按照以下步骤操作:

1. 将此添加到您的 CSS:

/* 显示滚动条 */

::-webkit-scrollbar {
    -webkit-appearance: none;
    margin-top: 10px;
    width: 7px;
    height: 8px;
    background-color: #eee;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
    height: 10px;
    background-color: rgba(0,0,0,.5);
    -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
}

2. 在 CodeRay 选项的应用程序帮助文件中,确保 block_code 选项 :line_numbers 设置为 :inline,如下所示:

类 CodeRayify < Redcarpet::Render::HTML

    def block_code(code, language)
        CodeRay.scan(code, language).div(:line_numbers => :inline)
    end
end
于 2016-03-15T04:26:18.547 回答