Skip to content

Commit

Permalink
docs: fix incorrect project title & repo links (#57)
Browse files Browse the repository at this point in the history
envoyproxy/envoy-mobile#36

Signed-off-by: Michael Rebello <[email protected]>
Signed-off-by: JP Simard <[email protected]>
  • Loading branch information
rebello95 authored and jpsim committed Nov 29, 2022
1 parent a165b0f commit 1795094
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions mobile/docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,11 @@ def setup(app):
# ones.
extensions = ['sphinxcontrib.httpdomain', 'sphinx.ext.extlinks', 'sphinx.ext.ifconfig']
extlinks = {
'repo': ('https://github.com/envoyproxy/envoy/blob/{}/%s'.format(blob_sha), ''),
'api': ('https://github.com/envoyproxy/envoy/blob/{}/api/%s'.format(blob_sha), ''),
'repo': ('https://github.com/lyft/envoy-mobile/blob/{}/%s'.format(blob_sha), ''),
}

# Setup global substitutions
if 'pre-release' in release_level:
substitutions = [('|envoy_docker_image|', 'envoy-dev:{}'.format(blob_sha))]
else:
substitutions = [('|envoy_docker_image|', 'envoy:{}'.format(blob_sha))]
# substitutions = []

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
Expand All @@ -94,7 +90,7 @@ def setup(app):
master_doc = 'index'

# General information about the project.
project = u'envoy'
project = u'envoy-mobile'
copyright = u'2019-{}, Lyft'.format(datetime.now().year)
author = u'Lyft'

Expand Down

0 comments on commit 1795094

Please sign in to comment.