Skip to content

Commit

Permalink
Fix or ignore links
Browse files Browse the repository at this point in the history
  • Loading branch information
chalin committed Jul 6, 2023
1 parent 6e0a687 commit 9fdd3d9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .htmltest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ IgnoreURLs: # list of regexs of paths or URLs to be ignored
# Ignore links to GH repo content for now.
- ^https?://github\.com/.*?/.*?/(blob|tree)/

# Too many redirects as the server tries to figure out the country and language,
# e.g.: https://www.microsoft.com/en-ca/sql-server.
- ^https://www.microsoft.com/sql-server$

# TODO: drop after fix to https://github.com/rust-lang/crates.io/issues/788
- ^https://crates\.io/crates
# TODO: drop after fix to https://github.com/micrometer-metrics/micrometer-docs/issues/239
Expand Down
3 changes: 3 additions & 0 deletions scripts/content-modules/adjust-pages.pl
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,9 @@ ()
if ($ARGV =~ /\/semconv/) {
s|(\]\()/docs/|$1$specBasePath/semconv/|g;
s|(\]:\s*)/docs/|$1$specBasePath/semconv/|;

# TODO: drop once semconv pages are fixed:
s|(/resource/faas\.md)#function-as-a-service|$1|;
}

# SPECIFICATION custom processing
Expand Down

0 comments on commit 9fdd3d9

Please sign in to comment.