6

jekyll.rbを使ってサイトを作っています。
about.htmlというページがあります。

<div class="grid_10 page">
    {% include about_content.markdown %}
</div>

about_content.markdownには、ダミーのマークダウンがあります。

A First Level Header
====================

A Second Level Header
---------------------

Hello!

何らかの理由で、ページがレンダリングされると、結果は次のようになります。

結果http://gabrielecirulli.com/p/20120107-203135.png

YAMLフロントマターをマークダウンファイルに追加しても、何も変わりません。

これは私の_config.ymlです

safe:        false
auto:        false
server:      false
server_port: 4000
baseurl:    /

source:      .
destination: ./_site
plugins:     ./_plugins

future:      true
lsi:         false
pygments:    false
markdown:    maruku
permalink:   date

maruku:
  use_tex:    false
  use_divs:   false
  png_engine: blahtex
  png_dir:    images/latex
  png_url:    /images/latex

rdiscount:
  extensions: []

kramdown:
  auto_ids: true,
  footnote_nr: 1
  entity_output: as_char
  toc_levels: 1..6
  use_coderay: false

  coderay:
    coderay_wrap: div
    coderay_line_numbers: inline
    coderay_line_numbers_start: 1
    coderay_tab_width: 4
    coderay_bold_every: 10
    coderay_css: style

jekyllにマークダウンを解釈させるにはどうすればよいですか?

4

1 に答える 1

14

markdownifyフィルターを通過させる必要があります。

<div class="grid_10 page">
  {% capture about_content %}
    {% include about_content.markdown %}
  {% endcapture %}
  {{ about_content | unindent | markdownify }}
</div>

Markdown コードをインデントしたままにし、markdown 化の前にインデントを削除するには、たとえば_plugins/unindent.rb次のように呼ばれる専用のプラグインを作成します。

module Jekyll
  module UnindentFilter
    def unindent input
      input.lstrip
    end
  end
end

Liquid::Template.register_filter Jekyll::UnindentFilter
于 2012-01-08T12:21:38.857 に答える