2

次のHAMLコードをMarkdownと組み合わせて入手しました。

%h2.slogan.align-center
  :markdown
    No more big words. Enough of the abbreviations.  
    **Project management for the rest of us.**

HTMLを生成します:

<h2 class='slogan align-center'>
  <p>No more big words. Enough of the abbreviations.<br/>
  <strong>Project management for the rest of us.</strong></p>
</h2>

HTMLを次のように表示したい(周囲の<p>タグを省略):

<h2 class='slogan align-center'>
  No more big words. Enough of the abbreviations.<br/>
  <strong>Project management for the rest of us.</strong>
</h2>

そのHTMLを作成するためのHAML/Markdownとは何ですか?

4

1 に答える 1

3

さて、hamlだけで行うのは簡単です:

%h2.slogan.align-center
  No more big words. Enough of the abbreviations.
  %br/
  %strong Project management for the rest of us.

hamlのマークダウンプラグインがpタグを追加しているようです。ドキュメントによると、これは4つの異なるマークダウンプロセッサの1つを使用して実現されます。どちらを使っているかによって結果が違うと思います。

于 2012-09-17T07:45:08.060 に答える