私はmarkdownを使ってブログを書こうとしており、redcarpet gemをインストールすることに決めました。 ```
を使用してコードのブロックを入れようとするたびに、最初の行を除くすべての行が6つの余分なスペースでインデントされてしまうという問題があります。それを取り除く方法?redcarpet gem(Ruby on Rails)を使って余分なスペースを取り除く方法
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
これは、コードは崇高でどのように見えるかです:
私は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
両方の方法が私のために働く、ありがとう! – weezing