From c2dbcc64c3e72fd7973a0f369f8868754211a550 Mon Sep 17 00:00:00 2001 From: mgros Date: Sat, 15 Aug 2026 03:14:51 +0200 Subject: [PATCH 1/3] Add MathJax demo link to developer docs for rendering inspection --- docs/developers.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/developers.md b/docs/developers.md index 2bc2f71e2..04440907c 100644 --- a/docs/developers.md +++ b/docs/developers.md @@ -74,6 +74,10 @@ fn test_simple_fraction() { } ``` +## Helpful Links + +* [MathJax Demo](https://www.mathjax.org/#demo) (archived) lets you paste a MathML fragment and inspect its browser rendering. It can be useful when checking whether an input expression itself renders as expected. + ### Test Coverage Test coverage helps identify which parts of the code are exercised by tests and which parts need more testing. @@ -121,4 +125,4 @@ open target/coverage/html/index.html **Alternative: IDE Integration** -Many Rust IDEs provide built-in test coverage support, like RustRover or VSCode. \ No newline at end of file +Many Rust IDEs provide built-in test coverage support, like RustRover or VSCode. From eebb4be6e7ef538f3f55c3b30985d9b5c128d6d7 Mon Sep 17 00:00:00 2001 From: mgros Date: Sat, 15 Aug 2026 03:16:11 +0200 Subject: [PATCH 2/3] . --- docs/developers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/developers.md b/docs/developers.md index 04440907c..331a16d78 100644 --- a/docs/developers.md +++ b/docs/developers.md @@ -76,7 +76,7 @@ fn test_simple_fraction() { ## Helpful Links -* [MathJax Demo](https://www.mathjax.org/#demo) (archived) lets you paste a MathML fragment and inspect its browser rendering. It can be useful when checking whether an input expression itself renders as expected. +* [MathJax Demo](https://www.mathjax.org/#demo): lets you paste a MathML fragment and inspect its browser rendering. ### Test Coverage From d4a112a8a9688a68b0ba3504483c094e4a630377 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20Gro=C3=9F?= Date: Sat, 15 Aug 2026 13:56:14 +0200 Subject: [PATCH 3/3] Update demo link in developers documentation Updated the MathJax demo link to MathCAT demo with additional context. --- docs/developers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/developers.md b/docs/developers.md index 331a16d78..cae5e58ec 100644 --- a/docs/developers.md +++ b/docs/developers.md @@ -76,7 +76,7 @@ fn test_simple_fraction() { ## Helpful Links -* [MathJax Demo](https://www.mathjax.org/#demo): lets you paste a MathML fragment and inspect its browser rendering. +* [MathCAT Demo]([https://www.mathjax.org/#demo](https://daisy.github.io/MathCATDemo/)): lets you paste a MathML fragment and inspect its displayed math, speech and braille. ### Test Coverage