Permitted contents

Warn if a child element has an allowed element or text node.

This rule refer HTML Living Standard based MDN Web docs. It has settings in @markuplint/html-spec.

It is possible to make the structure robust by setting element relationships on template engines such as custom elements and Vue.

Rule Details

👎 Examples of incorrect code for this rule

<ul>
    <div>Not allowed DIV element</div>
</ul>
<ul>Not allowed text node</ul>

<table>
    <thead><tr><th>Header cell<th></tr></thead>
    <tfoot><tr><td>Wrong ordered TFOOT element<td></tr></tfoot>
    <tbody><tr><td>Body cell<td></tr></tbody>
</table>

👍 Examples of correct code for this rule

<ul>
    <li>List item</li>
    <li>List item</li>
</ul>

<table>
    <thead><tr><th>Header cell<th></tr></thead>
    <tbody><tr><td>Body cell<td></tr></tbody>
    <tfoot><tr><td>Footer cell<td></tr></tfoot>
</table>

Setting value

  • Type: Array
  • Optional
  • Default value: []

Specify the target element for which you want to set a rule as an array. In the following example, rules are specified for each of the custom elements x-container and x-item.

{
    "rules": {
        "permitted-contents": [
            {
                "tag": "x-container",
                "contents": []
            },
            {
                "tag": "x-item",
                "contents": []
            }
        ]
    }
}

tag

  • Type: string
  • Required

Specify the target element (tag) name. Case is not significant.

contents

Specify the target elements as an array. The order of this array means allowed content order. (Content not included in this array will be not allowed content)

It is defined using one of the six keywords require, optional, oneOrMore, zeroOrMore, choice and interleave.

Of these, require, optional, oneOrMore and zeroOrMore mean the number of elements. Specify the tag name (or # text for text nodes) using the keyword as a key. Each keyword cannot be simultaneously specified.

{
    "rules": {
        "permitted-contents": [
            {
                "tag": "x-container",
                "contents": [
                    { "require": "x-item" },
                    { "optional": "y-item" },
                    { "oneOrMore": "z-item" },
                    { "zeroOrMore": "#text" },
                    // ❌ Cannot specify keywords simultaneously
                    {
                        "require": "x-item",
                        "optional": "y-item"
                    }
                ]
            }
        ]
    }
}
KeywordNumber of node
requireAlways one
optionalZero or one
oneOrMoreOne or more
zeroOrMoreZero or more

An arbitrary upper-limit can be specified with the max key. You can also set a lower-limit min key when you specify require.

Depending on the combination, the following two specifications have the same meaning:

{ "optional": "tag", "max": 5 }
{ "zeroOrMore": "tag", "max": 5 }

The two keywords choice andinterleave have the following meanings for the specified array:

KeywordMeanings
choiceAny one
interleaveNot matter the order
{
    "rules": {
        "permitted-contents": [
            {
                "tag": "x-container",
                "contents": [
                    {
                        "choice": [{ "oneOrMore": "x-item" }, { "oneOrMore": "y-item" }]
                    },
                    {
                        "interleave": [{ "oneOrMore": "z-item" }, { "oneOrMore": "#text" }]
                    }
                ]
            }
        ]
    }
}

Options

ignoreHasMutableChildren

  • Type: boolean
  • Default: true

Ignore if it has mutable child elements in a preprocessor language like Pug or a component library like Vue. (If use Pug or Vue need each @markuplint/pug-parser and @markuplint/vue-parser)

html
    // Originally, it is warned because the head element does not include the title element, but it is ignored because it contains a mutable element such as include.
    head
        include path/to/meta-list.pug
    body
        p lorem...

Default notification severity

error