Skip to content

Fix CI via replacing dead links #3119

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions _overviews/contributors/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).

Expand All @@ -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`.

Expand Down