1
0
Fork 0
Old engine for Continuous Time Bayesian Networks. Superseded by reCTBN. 🐍 https://github.com/madlabunimib/PyCTBN
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
PyCTBN/sphinx_output/_build/html/_static/js/pdj.js

13 lines
351 B

// setting highlight for async stuff in python
var async_kw = ['async', 'await'];
jQuery.each(async_kw, function(i, kw){
var elements = jQuery(".highlight-python .n:contains('" + kw + "')");
jQuery.each(elements, function(j, el){
el = jQuery(el);
if (el.text() == kw){
el.removeClass('n');
el.addClass('kn');
};
});
});