diff options
| author | Jafar Al-Gharaibeh <jafar@atcorp.com> | 2025-01-12 23:00:09 -0600 |
|---|---|---|
| committer | Jafar Al-Gharaibeh <jafar@atcorp.com> | 2025-01-13 10:24:12 -0600 |
| commit | fd4a76cb2fc2e3c9b01f3a469f549ab2fcccc5de (patch) | |
| tree | 81525e356a599e6ec901e56cf095062468959d52 /doc/user/_static/overrides.js | |
| parent | a962ff78330846e64daf1ffdfab0cb78f9c7b881 (diff) | |
doc: fix LaTex warning when building pdf docs
LaTex doesn't like the Unicon character `≥` which should be represented
by the special sequnce `$\leq$`. Since this is buried all in Sphinx, and
we also have a scrip that look for the character, the easiest fix is to
just use `>=` instead which works without warnings, and without asking to
ignore every warning about the use of every instance of the special char.
Signed-off-by: Jafar Al-Gharaibeh <jafar@atcorp.com>
Diffstat (limited to 'doc/user/_static/overrides.js')
| -rw-r--r-- | doc/user/_static/overrides.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/user/_static/overrides.js b/doc/user/_static/overrides.js index 73bf6123b5..f6af539bfa 100644 --- a/doc/user/_static/overrides.js +++ b/doc/user/_static/overrides.js @@ -5,7 +5,7 @@ */ $(document).ready(function() { $("span.mark:contains('Y')" ).addClass("mark-y" ).parent("td").addClass("mark"); - $("span.mark:contains('≥')" ).addClass("mark-geq").parent("td").addClass("mark"); + $("span.mark:contains('>=')").addClass("mark-geq").parent("td").addClass("mark"); $("span.mark:contains('N')" ).addClass("mark-n" ).parent("td").addClass("mark"); $("span.mark:contains('CP')").addClass("mark-cp" ).parent("td").addClass("mark"); $("span.mark:contains('†')" ).addClass("mark-dag").parent("td").addClass("mark"); |
