Skip to content

Commit da512b6

Browse files
authored
Merge pull request #326 from sjrd/fix-html-proofer
HTML Proofer: Ignore links to twitter.com.
2 parents 8f9720e + e766aba commit da512b6

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,14 @@ jobs:
3535
- name: HTMLProofer
3636
run: |
3737
# Check all links
38+
# Don't check links to twitter.com because they return 400 all the time
39+
# Also ignore github.com because we have too many and they eventually return 429
3840
bundle exec htmlproofer ./_site/\
3941
--only-4xx\
4042
--ignore-empty-alt=true\
4143
--allow-hash-href=true\
4244
--enforce-https=false\
4345
--ignore-missing-alt=true\
4446
--swap-urls "https\:\/\/scala\.epfl\.ch:"\
47+
--ignore-urls "/twitter.com/,/x.com/,/github.com/"\
4548
--cache '{ "timeframe": { "external": "30d" } }'

minutes/ab-reports/2017-q4.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,7 @@ Improvements to the project:
147147

148148
For a sneak preview, [head to this page][scalac-profiling-docs] that explains
149149
the current status of the visualizations of implicit search. If you're too
150-
busy, check [the Flamegraph][flamegraph] and [dot graph][] for the [example in
151-
the Circe website][circe website].
150+
busy, check [the example Flamegraph][flamegraph].
152151

153152
The plan for the technical guide is the following:
154153

@@ -562,8 +561,7 @@ around 20 people attended the event. More than 15 pull request was merged in
562561
well-known open source projects, and we had special help from Daniela Sfregola [@DanielaSfregola](https://github.com/DanielaSfregola)!
563562

564563
[scalac-profiling-docs]: https://scalacenter.github.io/scalac-profiling/
565-
[flamegraph]: https://scalacenter.github.io/scalac-profiling/circe-integration-flamegraph.svg
566-
[dot graph]: https://scalacenter.github.io/scalac-profiling/circe-integration.html
564+
[flamegraph]: https://scalacenter.github.io/scalac-profiling/img/scala-steward-implicit-searches-flamegraph.svg
567565
[circe website]: https://circe.github.io/circe/
568566
[#438]: https://github.com/sbt/zinc/pull/438
569567
[#428]: https://github.com/sbt/zinc/pull/428

records/2023-Q2-roadmap.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ users have to download a zip file containing an sbt project definition and then
237237
use `sbt`, and, last, the loading time of sbt creates a significant overhead.
238238

239239
As an alternative, we would like to allow the users to configure their programs
240-
via [configuration directives embedded in comments](https://scala-cli.virtuslab.org/docs/guides/configuration#using-directives).
240+
via [configuration directives embedded in comments](https://scala-cli.virtuslab.org/docs/guides/introduction/using-directives).
241241

242242
You can track the progress of this project [here](https://github.com/scalacenter/student-projects/issues/10).
243243

records/2023-Q3-roadmap.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ users have to download a zip file containing an sbt project definition and then
193193
use `sbt`, and, last, the loading time of sbt creates a significant overhead.
194194

195195
As an alternative, we would like to allow the users to configure their programs
196-
via [configuration directives embedded in comments](https://scala-cli.virtuslab.org/docs/guides/configuration#using-directives).
196+
via [configuration directives embedded in comments](https://scala-cli.virtuslab.org/docs/guides/introduction/using-directives).
197197

198198
You can track the progress of this project [here](https://github.com/scalacenter/student-projects/issues/10).
199199

0 commit comments

Comments
 (0)