We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8eb2e74 commit dfe31a5Copy full SHA for dfe31a5
scripts/content-modules/adjust-pages.pl
@@ -151,8 +151,13 @@ ()
151
s|\]\(([^:\)]*?\.md(#.*?)?)\)|]({{% relref "$1" %}})|g;
152
}
153
154
- # Rewrite link defs
155
- s|^(\[[^\]]+\]:\s*)([^:\s]*)(\s*(\(.*\))?)$|$1\{{% relref "$2" %}}$3|g;
+ # Rewrite link defs to local pages such as the following:
+ #
156
+ # [specification]: overview.md
157
+ # [faas]: some-path/faas-spans.md (FaaS trace conventions)
158
159
+ # The subregex `[:\s]+` excludes external URLs (because they contain a colon after the protocol)
160
+ s|^(\[[^\]]+\]:\s*)([^:\s]+)(\s*(\(.*\))?)$|$1\{{% relref "$2" %}}$3|g;
161
162
# Make website-local page references local:
163
s|https://opentelemetry.io/|/|g;
0 commit comments