Is there any way to remove the "View page source" link from a sphinx generated read the docs theme page?
There is a similar question here and it recommends finding the breadcrumbs file, but I can't find one
In your conf.py
file, try setting the variable html_show_sourcelink
to False
,
html_show_sourcelink = False
If it does not exist, just create it. Then, compile again the project,
$ make html