Markdownフロントマタージェネレーターとは
Markdownフロントマタージェネレーターは、Jekyll、Hugo、Astro、11tyなどの静的サイトジェネレーター向けのYAMLフロントマターブロックを生成します。 出力は公開サイトに使う前に確認しやすい形で表示されます。
Quick answer
Front matter is YAML or TOML metadata at the top of a Markdown file that tells your static site generator the page title, layout, publish date, tags, and other settings. It is separated from content by triple dashes.
Limitations
- The specific front matter fields vary by static site generator. Jekyll, Hugo, Astro, and 11ty each use different field names and conventions.
- This tool generates YAML format only. Generators that prefer TOML or JSON front matter will need a different format.
- Front matter values are case-sensitive in most static site generators. layout: post and Layout: post are treated as different fields.
使い方
- 必要な値を入力します。
- 結果パネルの出力を確認します。
- ページに合う部分だけコピーします。
- 公開前にブラウザとホスティング環境で確認します。
主な用途
- 公開前の繰り返し作業を短くする。
- マークアップ、CSS、チェックリストを準備する。
- 静的サイトで見落としやすい小さなミスを減らす。