diff --git a/docs/transform_github_links.py b/docs/transform_github_links.py index e136eda..7fc3469 100644 --- a/docs/transform_github_links.py +++ b/docs/transform_github_links.py @@ -11,8 +11,8 @@ includes_mapping = { r'^(providers|plugins)/index$': r'bootstrapvz/\1/', r'^(providers|plugins)/(?!index)([^/]+)$': r'bootstrapvz/\1/\2/', r'^manifest$': r'manifests/', - r'^testing/index$': r'testing/', - r'^testing/(?!index)([^/]+)_tests$': r'testing/\1/', + r'^testing/index$': r'tests/', + r'^testing/(?!index)([^/]+)_tests$': r'tests/\1/', r'^remote_bootstrapping$': r'bootstrapvz/remote/', r'^developers/index$': r'bootstrapvz/', r'^developers/contributing$': r'CONTRIBUTING.rst', @@ -26,9 +26,9 @@ links_mapping = { r'^$': r'', r'^bootstrapvz/(providers|plugins)$': r'\1', r'^bootstrapvz/(providers|plugins)/([^/]+)$': r'\1/\2.html', - r'^testing$': r'testing', + r'^tests$': r'testing', r'^manifests$': r'manifest.html', - r'^testing/([^/]+)$': r'testing/\1_tests.html', + r'^tests/([^/]+)$': r'testing/\1_tests.html', r'^bootstrapvz/remote$': r'remote_bootstrapping.html', r'^bootstrapvz$': r'developers', r'^CONTRIBUTING\.rst$': r'developers/contributing.html',