diff options
Diffstat (limited to 'lib/utils/page.js')
-rw-r--r-- | lib/utils/page.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/utils/page.js b/lib/utils/page.js index 9a468d6..0168831 100644 --- a/lib/utils/page.js +++ b/lib/utils/page.js @@ -95,9 +95,15 @@ function normalizeHtml(src, options) { // Replace glossayr terms _.each(options.glossary, function(term) { var r = new RegExp( "\\b(" + pregQuote(term.name.toLowerCase()) + ")\\b" , 'gi' ); + var includedInFiles = false; $("*").each(function() { replaceText($, this, r, function(match) { + if (!includedInFiles) { + includedInFiles = true; + term.files = term.files || []; + term.files.push(options.navigation[options.input]); + } return "<a href='"+links.toAbsolute("GLOSSARY.html", options.base, options.output)+"#"+term.id+"' class='glossary-term' title='"+term.description+"'>"+match+"</span>"; }); }); @@ -110,6 +116,9 @@ function normalizeHtml(src, options) { // Adapt page content to be relative to a base folder function normalizePage(sections, options) { options = _.defaults(options || {}, { + // Current file path + input: ".", + // Navigation to use to transform path navigation: {}, |