UNPKG

@gouvfr/dsfr-roller

Version:

Le module `dsfr-roller` permet de publier le site de documentation du Système de Design de l’État - DSFR

16 lines (11 loc) 358 B
import { Node } from '../node.js'; class ListNode extends Node { constructor (data) { super(data, data.ordered === true ? 'ol' : 'ul'); if (data.ordered === true && this.data.start !== undefined && !isNaN(this.data.start)) { this.attributes.setAttribute('start', this.data.start); } } } ListNode.TYPE = 'list'; export { ListNode };