generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
39 lines (34 loc) · 1.07 KB
/
test.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<ul class="has-list-bullet">
<li data-line="0"><div class="list-bullet"></div><strong>testse 1</strong></li>
<li data-line="1"><div class="list-bullet"></div><em>teste 2</em><br>Test lin 2</li>
</ul>
<script>
// Rekursive Funktion zum Durchlaufen aller Textknoten in einem Element
function processTextNodes(element, callback) {
for (const child of element.childNodes) {
if (child.nodeType === Node.TEXT_NODE) {
callback(child);
} else {
processTextNodes(child, callback);
}
}
}
// Selektiere alle Listenelemente (li)
const listItems = document.querySelectorAll('ul.has-list-bullet li[data-line]');
for (const listItem of listItems) {
// Ändere den Textinhalt jedes Textknotens im Listenelement
processTextNodes(listItem, function(textNode) {
textNode.textContent = 'New: ' + textNode.textContent;
});
}
</script>
</body>
</html>