mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2025-01-18 19:00:24 +00:00
Only highlight text in HTML elements #10
This commit is contained in:
parent
2ab6982425
commit
b52a263979
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue