mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 18:00:35 +00:00
Fix link transformation regexes for manifest docs
Forgot to add them when introducing the official manifests structure
This commit is contained in:
parent
d1b63938e9
commit
7f936e9ad8
1 changed files with 4 additions and 2 deletions
|
@ -10,7 +10,8 @@ includes_mapping = {
|
|||
r'^index$': r'',
|
||||
r'^(providers|plugins)/index$': r'bootstrapvz/\1/',
|
||||
r'^(providers|plugins)/(?!index)([^/]+)$': r'bootstrapvz/\1/\2/',
|
||||
r'^manifest$': r'manifests/',
|
||||
r'^manifests/index$': r'manifest/',
|
||||
r'^manifests/official_([^_]+)_manifests$': r'manifest/official/\1/',
|
||||
r'^testing/index$': r'tests/',
|
||||
r'^testing/(?!index)([^/]+)_tests$': r'tests/\1/',
|
||||
r'^remote_bootstrapping$': r'bootstrapvz/remote/',
|
||||
|
@ -27,7 +28,8 @@ links_mapping = {
|
|||
r'^bootstrapvz/(providers|plugins)$': r'\1',
|
||||
r'^bootstrapvz/(providers|plugins)/([^/]+)$': r'\1/\2.html',
|
||||
r'^tests$': r'testing',
|
||||
r'^manifests$': r'manifest.html',
|
||||
r'^manifests$': r'manifests',
|
||||
r'^manifests/official/([^/]+)$': r'manifests/official_\1_manifests.html',
|
||||
r'^tests/([^/]+)$': r'testing/\1_tests.html',
|
||||
r'^bootstrapvz/remote$': r'remote_bootstrapping.html',
|
||||
r'^bootstrapvz$': r'developers',
|
||||
|
|
Loading…
Add table
Reference in a new issue