HugoMVale

Results 7 issues of HugoMVale

**Issue to be solved** Procedures `pdf_norm` and `cdf_norm` of module `stdlib_stats_distribution_normal` are defined as `impure` because they include a call to the custom function `error_stop` if scale==0. This leads to...

reviewers needed

### Description Projects like [this one](https://github.com/Nicholaswogan/odepack) can be built with v.07.2, but not with 0.8.x. I can't say if this problem has been fixed in v.0.9.0 because this version is...

bug

Would it be possible to have this plugin to work together with [Snippets](https://facelessuser.github.io/pymdown-extensions/extensions/snippets/), so that a jupyter notebook could be inserted at a given position of a markdown page? I...

* Routines containing explicit interfaces are excluded by f90wrap. * Routines containing abstract interfaces are not excluded, but are incorrectly wrapped. **Input** ```fortran ! test.f90 module test implicit none private...

According to the documentation, `f90wrap` can parse Doxygen docstrings. Can it also (and if so, how) parse FORD-style docstrings? Example below for illustration. Thank you. ```fortran pure real(rk) function lax_friedrichs(f,...

**Describe the bug** First of all, thanks for this very nice plugin. There are two issues, probably related: 1. Output is only generated with print, not by calling the variable/object....

Currently, step methods have an interface like so: ```fortran subroutine step_func_fixed(me,t,x,h,xf) !! rk step function for the fixed-step methods. import :: rk_fixed_step_class,wp implicit none class(rk_fixed_step_class),intent(inout) :: me real(wp),intent(in) :: t...