Summary
Currently on the home page in the Capabilities section, the <template> feature needed to authored with explicit spaces before the angle brackets
<wcc-capability-box heading="< template >">
<p>Template element support (createElement)</p>
</wcc-capability-box>
Otherwise, without the spaces, all the content disappears, which makes sense, as parse5 is literally interpreting the contents as an HTML tag
<wcc-capability-box heading="<template>">
<p>Template element support (createElement)</p>
</wcc-capability-box>
However, even when using HTML entities (which I would expect to work) the content disappearing still occurs
<wcc-capability-box heading="<template>">
<p>Template element support (createElement)</p>
</wcc-capability-box>
Would be nice to figure out a way to make this work one way or the other.
Additional Details
Based on some initial research, it seems to be a parse5 issue - https://github.com/ProjectEvergreen/wcc/pull/250/changes#r2820010219
Summary
Currently on the home page in the Capabilities section, the
<template>feature needed to authored with explicit spaces before the angle bracketsOtherwise, without the spaces, all the content disappears, which makes sense, as parse5 is literally interpreting the contents as an HTML tag
However, even when using HTML entities (which I would expect to work) the content disappearing still occurs
Would be nice to figure out a way to make this work one way or the other.
Additional Details
Based on some initial research, it seems to be a parse5 issue - https://github.com/ProjectEvergreen/wcc/pull/250/changes#r2820010219