Jekyll で Web サイトを作成しようとしています#something
が、最初のレベルの見出しタグを取得するために使用するたびに<h1>something</h1>
、代わりに取得します<h1 id=something>something</h1>
私は何を間違っていますか?
Jekyll で Web サイトを作成しようとしています#something
が、最初のレベルの見出しタグを取得するために使用するたびに<h1>something</h1>
、代わりに取得します<h1 id=something>something</h1>
私は何を間違っていますか?
A better bet would be to put the option into your _config.yml file, then you don't need to include it in every markdown file. For kramdown you'd need to include:
kramdown:
auto_ids: false
さて、私は自分自身に何らかの答えを与えましょう。これをマークダウンファイルに追加するとどうやら:
{::options auto_ids="false" /}
その後、自動 ID 生成がオフになります。パーサーとして Kramdown を使用しています。