Commit ce2e51ae authored by Filipa Lacerda's avatar Filipa Lacerda

Merge branch 'katex-throwOnError' into 'master'

Disable throwOnError in KaTeX to reveal user where is the problem

See merge request gitlab-org/gitlab-ce!16684
parents 26c4dea7 2efadce5
......@@ -18,7 +18,7 @@ function renderWithKaTeX(elements) {
const display = $this.attr('data-math-style') === 'display';
try {
katex.render($this.text(), mathNode.get(0), { displayMode: display });
katex.render($this.text(), mathNode.get(0), { displayMode: display, throwOnError: false });
mathNode.insertAfter($this);
$this.remove();
} catch (err) {
......
---
title: Disable throwOnError in KaTeX to reveal user where is the problem
merge_request: 16684
author: Jakub Jirutka
type: other
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment