From b9d6e4a504e7a6b50aec42167a2bf88c9bcee0f3 Mon Sep 17 00:00:00 2001 From: Patrice Chalin Date: Wed, 12 Jun 2024 21:02:24 -0400 Subject: [PATCH] [CI] Cleanup of adjust-pages.pl script --- scripts/content-modules/adjust-pages.pl | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/scripts/content-modules/adjust-pages.pl b/scripts/content-modules/adjust-pages.pl index f5df542d6a2d..d77160f3d5a8 100755 --- a/scripts/content-modules/adjust-pages.pl +++ b/scripts/content-modules/adjust-pages.pl @@ -130,10 +130,9 @@ () # Fix links that are to the title of the .md page # TODO: fix these in the spec - s|(/context/api-propagators.md)#propagators-api|$1|g; - s|(/semantic_conventions/faas.md)#function-as-a-service|$1|g; - s|(/resource/sdk.md)#resource-sdk|$1|g; - s|(event-api.md#)(data-model)|$1event-$2|g; + s|(/context/api-propagators.md)#propagators-api|$1|g; # Waiting on https://github.com/open-telemetry/opentelemetry-specification/pull/4080 + s|(/resource/sdk.md)#resource-sdk|$1|g; # Waiting on https://github.com/open-telemetry/semantic-conventions/pull/1154 + s|(event-api.md#)(data-model)|$1event-$2|g; # Waiting on https://github.com/open-telemetry/opentelemetry-specification/pull/4075 s|\.\.\/README.md\b|$otelSpecRepoUrl/|g if $ARGV =~ /specification._index/; s|\.\.\/README.md\b|..| if $ARGV =~ /specification.library-guidelines.md/;