GitHub PagesでMarkdownの<details>内要素がパースされない
全て
問題
GitHub Pagesを作成する際, JekyllによるMarkdownからのHTMLページ生成を行ったが<details>
内要素がパースされなかった.
なぜ
JekyllではHTML生成にkramdownが使われているが, 標準でparse_block_html
がfalse
になっているためパースされないのであった.
<details><summary>test</summary>
```ruby
p "hello"
\```
</details>
(注: \
はエスケープの為入れています.)
解決
ページ生成時のrootディレクトリに作成した_config.yml
に
_config.yml
markdown: CommonMarkGhPages
を追記して解決.
注意
_config.yml
markdown: kramdown
kramdown:
parse_block_html: true
と記述すると, 1ページ内に複数<details>
が存在した場合, バグる.
Author And Source
この問題について(GitHub PagesでMarkdownの<details>内要素がパースされない), 我々は、より多くの情報をここで見つけました https://qiita.com/eggplants/items/673aba3637748346797c著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .