From 7ee0cb1acabd742bcdf647211729805e13b770f7 Mon Sep 17 00:00:00 2001 From: "Jiahui (Jerry) Tan" <66892505+Friendseeker@users.noreply.github.com> Date: Sun, 24 Nov 2024 00:40:27 -0800 Subject: [PATCH] Fix CI via removing dead links --- _overviews/contributors/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_overviews/contributors/index.md b/_overviews/contributors/index.md index 757f8b92da..c482c6f8dc 100644 --- a/_overviews/contributors/index.md +++ b/_overviews/contributors/index.md @@ -386,7 +386,7 @@ an sbt-site to GitHub Pages. ### Create the Documentation Site -In this example we choose to use [Paradox](https://developer.lightbend.com/docs/paradox/current/index.html) +In this example we choose to use [Paradox](https://github.com/lightbend/paradox) because it runs on the JVM and thus doesn't require setting up another VM on your system (in contrast with most other documentation generators, which are based on Ruby, Node.js or Python). @@ -403,7 +403,7 @@ enablePlugins(ParadoxSitePlugin, SitePreviewPlugin) Paradox / sourceDirectory := sourceDirectory.value / "documentation" {% endhighlight %} -The `ParadoxSitePlugin` provides a task `makeSite` that generates a website using [Paradox](https://developer.lightbend.com/docs/paradox/current/), and the `SitePreviewPlugin` provides handy tasks when working on the website content, to preview the result in your browser. +The `ParadoxSitePlugin` provides a task `makeSite` that generates a website using [Paradox](https://github.com/lightbend/paradox), and the `SitePreviewPlugin` provides handy tasks when working on the website content, to preview the result in your browser. The second line is optional, it defines the location of the website source files. In our case, in `src/documentation`.