Skip to content
Snippets Groups Projects
Commit 4a0f5d5f authored by dgelessus's avatar dgelessus
Browse files

Use plain Unicode instead of LaTeX in rich text :table output

LaTeX formulas inside tables cause various layout issues in Jupyter
Notebook, such as long sets being wrapped even when they would fit on a
single line, table columns being wider than necessary, and LaTeX
formulas being left-aligned instead of right-aligned like normal text.
parent dcec9077
No related branches found
No related tags found
No related merge requests found
Pipeline #75103 passed
......@@ -15,6 +15,7 @@
* Fixed a bug where interrupting a command could make the kernel completely stop responding, requiring a manual restart.
* Fixed syntax errors when using local variables (`:let`) in Event-B mode.
* Fixed the `:trace` command sometimes displaying transitions as `null`.
* Disabled LaTeX formatting inside `:table` output, because it leads to various layout issues inside Jupyter Notebook. The table contents are now rendered as plain Unicode text instead.
## [1.2.0](https://www3.hhu.de/stups/downloads/prob2-jupyter/prob2-jupyter-kernel-1.2.0-all.jar)
......
......@@ -92,7 +92,7 @@ public final class TableCommand implements Command {
sbPlain.append(String.join("\t", row));
sbPlain.append('\n');
sbMarkdown.append('|');
sbMarkdown.append(row.stream().map(s -> '$' + UnicodeTranslator.toLatex(s) + '$').collect(Collectors.joining("|")));
sbMarkdown.append(row.stream().map(UnicodeTranslator::toUnicode).collect(Collectors.joining("|")));
sbMarkdown.append("|\n");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment