diff --git a/build_tmpl.sh b/build_tmpl.sh
index 303c5db6..5c4a0c44 100755
--- a/build_tmpl.sh
+++ b/build_tmpl.sh
@@ -1,2 +1,2 @@
#!/bin/sh
-handlebars util/tmpl/* -f ext/bg/templates.js
+handlebars util/tmpl/* -f ext/bg/js/templates.js
diff --git a/ext/bg/js/dictionary.js b/ext/bg/js/dictionary.js
index 366692b0..6870601e 100644
--- a/ext/bg/js/dictionary.js
+++ b/ext/bg/js/dictionary.js
@@ -41,7 +41,7 @@ class Dictionary {
results = results.concat(
indices.map(index => {
const [e, r, t, ...g] = dict.defs[index];
- return {id: index, expression: e, reading: r, glossary: g.join('; '), tags: t.split(' ')};
+ return {id: index, expression: e, reading: r, glossary: g, tags: t.split(' ')};
})
);
}
diff --git a/ext/bg/js/templates.js b/ext/bg/js/templates.js
index 8ac5f8e5..0c1be04b 100644
--- a/ext/bg/js/templates.js
+++ b/ext/bg/js/templates.js
@@ -21,15 +21,19 @@ templates['term.html'] = template({"1":function(container,depth0,helpers,partial
return "
"
+ container.escapeExpression(((helper = (helper = helpers.reading || (depth0 != null ? depth0.reading : depth0)) != null ? helper : helpers.helperMissing),(typeof helper === "function" ? helper.call(depth0 != null ? depth0 : {},{"name":"reading","hash":{},"data":data}) : helper)))
+ "
";
+},"3":function(container,depth0,helpers,partials,data) {
+ return " "
+ + container.escapeExpression(container.lambda(depth0, depth0))
+ + "\n";
},"compiler":[7,">= 4.0.0"],"main":function(container,depth0,helpers,partials,data) {
- var stack1, helper, alias1=depth0 != null ? depth0 : {}, alias2=helpers.helperMissing, alias3="function", alias4=container.escapeExpression;
+ var stack1, helper, alias1=depth0 != null ? depth0 : {};
return ""
- + alias4(((helper = (helper = helpers.expression || (depth0 != null ? depth0.expression : depth0)) != null ? helper : alias2),(typeof helper === alias3 ? helper.call(alias1,{"name":"expression","hash":{},"data":data}) : helper)))
+ + container.escapeExpression(((helper = (helper = helpers.expression || (depth0 != null ? depth0.expression : depth0)) != null ? helper : helpers.helperMissing),(typeof helper === "function" ? helper.call(alias1,{"name":"expression","hash":{},"data":data}) : helper)))
+ "
\n"
+ ((stack1 = helpers["if"].call(alias1,(depth0 != null ? depth0.reading : depth0),{"name":"if","hash":{},"fn":container.program(1, data, 0),"inverse":container.noop,"data":data})) != null ? stack1 : "")
- + "\n"
- + alias4(((helper = (helper = helpers.glossary || (depth0 != null ? depth0.glossary : depth0)) != null ? helper : alias2),(typeof helper === alias3 ? helper.call(alias1,{"name":"glossary","hash":{},"data":data}) : helper)))
- + "
\n";
+ + "\n\n
\n"
+ + ((stack1 = helpers.each.call(alias1,(depth0 != null ? depth0.glossary : depth0),{"name":"each","hash":{},"fn":container.program(3, data, 0),"inverse":container.noop,"data":data})) != null ? stack1 : "")
+ + "
\n
\n";
},"useData":true});
})();
\ No newline at end of file
diff --git a/util/tmpl/term.html b/util/tmpl/term.html
index e46e9d5b..3713e1e8 100644
--- a/util/tmpl/term.html
+++ b/util/tmpl/term.html
@@ -1,3 +1,9 @@
{{expression}}
{{#if reading}}{{reading}}
{{/if}}
-{{glossary}}
+
+
+ {{#each glossary}}
+ - {{.}}
+ {{/each}}
+
+