1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-15 01:49:55 +00:00

Add displayMode attribute to katex widget.

This commit is contained in:
Santiago Pelufo 2015-12-18 11:41:37 -03:00
parent c2105de49c
commit aaf3e6bb9e
2 changed files with 4 additions and 1 deletions

View File

@ -256,3 +256,5 @@ Tony Grosinger @tgrosinger 2015/10/03
Antaeus Feldspar @afeldspar 2015/10/20
Soeren Enevoldsen, @senevoldsen90, 2015/10/09
Santiago Pelufo, @spelufo, 2015/12/18

View File

@ -34,9 +34,10 @@ KaTeXWidget.prototype.render = function(parent,nextSibling) {
this.execute();
// Get the source text
var text = this.getAttribute("text",this.parseTreeNode.text || "");
var displayMode = this.getAttribute("displayMode",this.parseTreeNode.displayMode || "false") === "true";
// Render it into a span
var span = this.document.createElement("span"),
options = {throwOnError: false};
options = {throwOnError: false, displayMode: displayMode};
try {
if(!this.document.isTiddlyWikiFakeDom) {
katex.render(text,span,options);