·
407 commits
to main
since this release
Minor Changes
-
79f30b8:
11ty/plugins/custom-elements-manifest.cjs: addedrenderTitleInOverview
option, a boolean flag which defaults totrue.When true, this option renders an
<h1>in the element's docs page's "Overview"
section.Note: the next major release will switch this option to
falseby default, so
to prepare your docs pages, add your own headings:BEFORE:
{% renderOverview %} <pf-jazz-hands></pf-jazz-hands> {% endrenderOverview %}AFTER:
<section class="band"> <h1 id="jazz-hands">Jazz Hands</h1> </section> {% renderOverview %} <pf-jazz-hands></pf-jazz-hands> {% endrenderOverview %}