Hi,
When I try to write a paragraph title using ===, I raise this error :
*
I think the problem comes from one of the packages great theorems or rich-counter, because of this :
// `at` method for this rich-counter
let at(key) = {
// get inherited numbers
let num_parent = (parent_rhcntr.at)(key)
while num_parent.len() < inherited_levels { num_parent.push(0) }
while num_parent.len() > inherited_levels { num_parent.pop() }
// get numbers of own partial counter
let updates = updates_during((parent_rhcntr.last_update_location)(inherited_levels, key), key)
let num_self = compute_counter(updates)
return num_parent + num_self
}
Does anyone know how to solve it ?
Thanks in advance !