I am using read the docs theme to create a HTML content using sphinx. In the theme, I want to edit the hyperlink for "Edit on Github" section. I am able to enable or disable the link using the following variables in the conf.py file.
html_context = {
'display_github': True,
'github_repo': 'xyz',
}`
This results in the following link https://github.com/xyz
However, we have an internal GitLab repo in our company and I want to change the link to https://github.companyname.com/xyz
Also, is there a variable in the theme to specify the branch name?