I think it is counterintuitive that using pandoc-eqnos modifies the output for imgs.
I initially thought this was due to the interaction between pandoc-fignos or pandoc-tablenos, but that does not seem to be the case. I've uninstalled pandoc-fignos and pandoc-tablenos from my machine and I still get the same behavior. I'm also not able to find any code in this repo that would be responsible for this, so I'm not really sure what is going on.
After doing a little bit of reading and experimenting, I think this is related to pandoc's implicit figures and not actually an issue with pandoc-eqnos. I'll close this.
If I have the following markdown file:
running
pandoc test.md -o test.html
gives this:however,
running
pandoc --filter=pandoc-eqnos test.md -o test.html
gives this:I think it is counterintuitive that using
pandoc-eqnos
modifies the output forimg
s.I initially thought this was due to the interaction between
pandoc-fignos
orpandoc-tablenos
, but that does not seem to be the case. I've uninstalledpandoc-fignos
andpandoc-tablenos
from my machine and I still get the same behavior. I'm also not able to find any code in this repo that would be responsible for this, so I'm not really sure what is going on.