/* jQuery(function() { if (typeof(wrap_glossary) === 'undefined') { wrap_glossary = true; var terms = new Array(); jQuery(".wrap_glossary td:first-child").each(function() { var term = jQuery(this).text(); terms.push(term); }); var text = jQuery("#dokuwiki__content").each(function() { var html = jQuery(this).html(); for (var i = 0; i < terms.length; ++i) { var term = terms[i]; html = html.replace(" " + term + " ", ' ' + term + ' '); } jQuery(this).html(html); }); } }); */