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.
13 lines
351 B
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');
|
|
};
|
|
});
|
|
});
|
|
|