6 Likes
you can avoid splitting your modules into multiple files by setting check = false
on evalModules
, or in the newer style adding a module that sets _module.check = false
. that’s how the docs system is able to cache most of the collected options documentation without needing this split; we simply skip the consistency checks since we don’t need them.
5 Likes
Good to know!
After splitting them out I have to admit I kinda like the separation. I’ll be sure to make an edit over the weekend though to point out that it’s not strictly necessary.
I couldn’t tolerate knowing I was spreading mis-information so I went ahead and added the correction
Thanks again @pennae
2 Likes