mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-06-14 09:40:14 +00:00

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>
14 lines
727 B
JavaScript
14 lines
727 B
JavaScript
/* special styling for the protocols vs. OS table in overview.rst
|
|
*
|
|
* unfortunately this can't be done in straight CSS because we're changing
|
|
* the styling on the parent.
|
|
*/
|
|
$(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('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");
|
|
$('td.mark').parents('table').addClass("mark").children('colgroup').remove();
|
|
});
|