From 9c252083d1d0835c4a88d47637b991e77becfcb1 Mon Sep 17 00:00:00 2001 From: pmario Date: Wed, 30 Oct 2024 16:47:38 +0100 Subject: [PATCH] add tc-table-data as new utility class --- core/modules/parsers/wikiparser/rules/table.js | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/core/modules/parsers/wikiparser/rules/table.js b/core/modules/parsers/wikiparser/rules/table.js index 76fb36329..db3d4395b 100644 --- a/core/modules/parsers/wikiparser/rules/table.js +++ b/core/modules/parsers/wikiparser/rules/table.js @@ -128,9 +128,11 @@ var processRow = function(prevColumns,options) { // Move back to the closing `|` this.parser.pos--; cell.end = this.parser.pos; - $tw.utils.addClassToParseTreeNode(cell,colCount%2 ? "oddCol" : "evenCol"); - $tw.utils.addAttributeToParseTreeNode(cell,"data-col",colCount); - $tw.utils.addAttributeToParseTreeNode(cell,"data-addr",options.rowCount + "/" + colCount); + if(this.addData) { + $tw.utils.addClassToParseTreeNode(cell,colCount%2 ? "oddCol" : "evenCol"); + $tw.utils.addAttributeToParseTreeNode(cell,"data-col",colCount); + $tw.utils.addAttributeToParseTreeNode(cell,"data-addr",options.rowCount + "/" + colCount); + } } col++; cellRegExp.lastIndex = this.parser.pos; @@ -155,6 +157,7 @@ exports.parse = function() { var rowType = rowMatch[2]; // Check if it is a class assignment if(rowType === "k") { + this.addData = rowMatch[1].split(" ").indexOf("tc-table-data") !== -1; $tw.utils.addClassToParseTreeNode(table,rowMatch[1]); this.parser.pos = rowMatch.index + rowMatch[0].length; } else { @@ -181,7 +184,9 @@ exports.parse = function() { // Create the row var theRow = {type: "element", tag: "tr", children: [], start: rowMatch.index}; $tw.utils.addClassToParseTreeNode(theRow,rowCount%2 ? "oddRow" : "evenRow"); - $tw.utils.addAttributeToParseTreeNode(theRow,"data-row",rowCount); + if(this.addData) { + $tw.utils.addAttributeToParseTreeNode(theRow,"data-row",rowCount); + } rowContainer.children.push(theRow); // Process the row theRow.children = processRow.call(this,prevColumns,{rowCount: rowCount});