ReactiveBayes / RxInfer.jl

Julia package for automated Bayesian inference on a factor graph with reactive message passing
MIT License
259 stars 24 forks source link

Nice docs #54

Closed ChrisRackauckas closed 1 year ago

ChrisRackauckas commented 1 year ago

How did you get documenter to give you that nice navigation bar across the top?

bvdmitri commented 1 year ago

Hey, thanks!

We hacked it around really, because Documenter.jl does not allow you to do that (yet?). We implemented our own simple solution here: https://github.com/biaslab/RxInfer.jl/blob/main/docs/src/assets/header.js https://github.com/biaslab/RxInfer.jl/blob/main/docs/src/assets/header.css https://github.com/biaslab/RxInfer.jl/blob/main/docs/src/assets/theme.css

Long story short it simply injects a few HTML nodes at webpage initialisation using pure javascript (and it could potentially break with a new release of Documenter.jl in case of layout changes)

Can I close the issue?

ChrisRackauckas commented 1 year ago

Awesome, thanks for the info.