"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.transformMarkup = void 0; async function transformMarkup({ content, filename }, transformer, options = {}) { let { markupTagName = 'template' } = options; markupTagName = markupTagName.toLocaleLowerCase(); const markupPattern = new RegExp(`/|<${markupTagName}(\\s[^]*?)?(?:>([^]*?)<\\/${markupTagName}>|\\/>)`); const templateMatch = content.match(markupPattern); /** If no