mirror of
https://github.com/McShelby/hugo-theme-relearn
synced 2025-04-30 17:48:47 +08:00
Only highlight text in HTML elements #10
This commit is contained in:
parent
2ab6982425
commit
b52a263979
@ -423,7 +423,7 @@ $(function() {
|
||||
|
||||
jQuery.extend({
|
||||
highlight: function(node, re, nodeName, className) {
|
||||
if (node.nodeType === 3) {
|
||||
if (node.nodeType === 3 && node.parentElement.namespaceURI == 'http://www.w3.org/1999/xhtml') { // text nodes
|
||||
var match = node.data.match(re);
|
||||
if (match) {
|
||||
var highlight = document.createElement(nodeName || 'span');
|
||||
|
Loading…
x
Reference in New Issue
Block a user