« get me outta code hell

content: transformContent: make <h2>'s into content headings - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/util/replacer.js
diff options
context:
space:
mode:
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
commitd908377fa3d7a90df344744a9d2429c4a4095d01 (patch)
tree9b236371ca52eeaf25fc742d13bd05e7b22c7f16 /src/util/replacer.js
parent1697d5275524d74731941f32c7dd0c7071366a7b (diff)
content: transformContent: make <h2>'s into content headings
This was previous behavior. Forgot to include it in data-steps!
Diffstat (limited to 'src/util/replacer.js')
-rw-r--r--src/util/replacer.js45
1 files changed, 44 insertions, 1 deletions
diff --git a/src/util/replacer.js b/src/util/replacer.js
index caf16bb..e1d8131 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;