Sandbox3

From fridemar.ai
Revision as of 01:29, 7 January 2024 by Fridemar (talk | contribs) (/Sub/)
Jump to navigation Jump to search

test RedeSchrift BitCoin atxt-> https://www.trankynam.com/atext/ SandBox Discussion /Sub/

javascript: (() => { // Get all the text nodes in the document let textNodes = document.evaluate("//text()", document, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null); // Loop through each text node for (let i = 0; i < textNodes.snapshotLength; i++) { let node = textNodes.snapshotItem(i); // Split the text by whitespace and punctuation let words = node.data.split(/[\s,.!?;:()'"`]+/); // Loop through each word for (let word of words) { // Check if the word is camel case if (word.match(/^[a-z]+[A-Z][a-zA-Z]*$/)) { // Replace the word with a span element that has an underline style node.data = node.data.replace(word, `${word}`); } } } })();

Discussion


javascript:(function(){ var wikiWords = document.querySelectorAll(".wikilink"); for (var i = 0; i < wikiWords.length; i++) { wikiWords[i].style.textDecoration = "underline"; } })() WikiWord