diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2023-08-15 20:06:51 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2023-08-15 20:06:51 -0300 |
commit | d908377fa3d7a90df344744a9d2429c4a4095d01 (patch) | |
tree | 9b236371ca52eeaf25fc742d13bd05e7b22c7f16 | |
parent | 1697d5275524d74731941f32c7dd0c7071366a7b (diff) |
content: transformContent: make <h2>'s into content headings
This was previous behavior. Forgot to include it in data-steps!
-rw-r--r-- | src/util/replacer.js | 45 |
1 files changed, 44 insertions, 1 deletions
diff --git a/src/util/replacer.js b/src/util/replacer.js index caf16bbf..e1d81319 100644 --- a/src/util/replacer.js +++ b/src/util/replacer.js @@ -1,5 +1,6 @@ import {logError, logWarn} from './cli.js'; import {escapeRegex} from './sugar.js'; +import * as html from './html.js'; // Syntax literals. const tagBeginning = '[['; @@ -420,13 +421,55 @@ export function postprocessImages(inputNodes) { return outputNodes; } +export function postprocessHeadings(inputNodes) { + const outputNodes = []; + + for (const node of inputNodes) { + if (node.type !== 'text') { + outputNodes.push(node); + continue; + } + + const headingRegexp = /<h2 (.*?)>/g; + + let textContent = ''; + + let match = null, parseFrom = 0; + while (match = headingRegexp.exec(node.data)) { + textContent += node.data.slice(parseFrom, match.index); + parseFrom = match.index + match[0].length; + + const attributes = html.attributes(parseAttributes(match[1])); + + attributes.set('class', + (attributes.get('class') ?? []) + .concat(['content-heading'])); + + // We're only modifying the opening tag here. The remaining content, + // including the closing tag, will be pushed as-is. + textContent += `<h2 ${attributes}>`; + } + + if (parseFrom !== node.data.length) { + textContent += node.data.slice(parseFrom); + } + + outputNodes.push({type: 'text', data: textContent}); + } + + return outputNodes; +} + export function parseInput(input) { if (typeof input !== 'string') { throw new TypeError(`Expected input to be string, got ${input}`); } try { - return postprocessImages(parseNodes(input, 0)); + let output = parseNodes(input, 0); + output = postprocessImages(output); + output = postprocessHeadings(output); + return output; } catch (errorNode) { if (errorNode.type !== 'error') { throw errorNode; |