Sandbox3: Difference between revisions
mNo edit summary |
|||
(3 intermediate revisions by the same user not shown) | |||
Line 6: | Line 6: | ||
[[/Sub/]] | [[/Sub/]] | ||
[[/example1/]] | [[/example1/]] | ||
[[/example2 | [[/example2]] | ||
[[file:JustanotherSvgTestFromCurve.svg]] | |||
---- | |||
<html> | <html> | ||
javascript: (() => { | javascript: (() => { |
Latest revision as of 01:37, 9 January 2024
test RedeSchrift BitCoin atxt-> https://www.trankynam.com/atext/ SandBox Discussion /Sub/ /example1/ /example2
File:JustanotherSvgTestFromCurve.svg
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}`); } } } })();
javascript:(function(){ var wikiWords = document.querySelectorAll(".wikilink"); for (var i = 0; i < wikiWords.length; i++) { wikiWords[i].style.textDecoration = "underline"; } })() WikiWord