0

make html and sphinx-build 'source' 'build\html' -a -E give the same results; an .rst file in docs/source I modified is being overridden when I add to :exclude-members: here, generating docs with said member present. Same behavior if simply wiping the entire .rst file clean; seems like the changes are being ignored entirely, and Sphinx is using some cached .rst's instead (despite -a -E).

I don't recall having to do anything other than make html. I also tried preceding with make clean, and commenting out an app.connect which was noted to be potentially unstable. Is there some command to make Sphinx use the current .rst files?

OverLordGoldDragon
  • 1
  • 9
  • 53
  • 101

1 Answers1

0

You are editing .rst.txt files in build, which are what's generated by Sphinx by reading .rst in source. Big brain.

OverLordGoldDragon
  • 1
  • 9
  • 53
  • 101