Skip to content

point to new docs location #639

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
Feb 28, 2025
Merged
Show file tree
Hide file tree
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
6 changes: 2 additions & 4 deletions README.markdown
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
Paradox [![scaladex-badge][]][scaladex] [![travis-badge][]][travis]
Paradox [![scaladex-badge][]][scaladex]
=======

[scaladex]: https://index.scala-lang.org/lightbend/paradox
[scaladex-badge]: https://index.scala-lang.org/lightbend/paradox/paradox/latest.svg
[travis]: https://travis-ci.com/lightbend/paradox
[travis-badge]: https://travis-ci.com/lightbend/paradox.svg?branch=master

Paradox is a markdown documentation tool for software projects. See [Paradox docs](http://developer.lightbend.com/docs/paradox/latest/) for details.
Paradox is a markdown documentation tool for software projects. See [Paradox docs](https://lightbend.github.io/paradox/) for details.

## License

Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ inThisBuild(
licenses += "Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0.html"),
organizationName := "lightbend",
organizationHomepage := Some(url("https://lightbend.com/")),
homepage := Some(url("https://developer.lightbend.com/docs/paradox/current/")),
homepage := Some(url("https://lightbend.github.io/paradox/")),
scmInfo := Some(ScmInfo(url("https://github.com/lightbend/paradox"), "git@github.com:lightbend/paradox.git")),
developers := List(
Developer("pvlugter", "Peter Vlugter", "@pvlugter", url("https://github.com/pvlugter")),
Expand Down
4 changes: 2 additions & 2 deletions docs/src/main/paradox/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ To use this functionality, make `project.url` point to a URL where the **current
To set a URL different from `homepage`, add `project.url` to Paradox properties

```scala
paradoxProperties += ("project.url" -> "https://developer.lightbend.com/docs/paradox/current/")
paradoxProperties += ("project.url" -> "https://lightbend.github.io/paradox/")
```

## Canonical URL
Expand All @@ -74,7 +74,7 @@ The built-in theme (`generic`) will add a `<link rel="canonical" href=...` page
To set a URL different from `homepage`, add `canonical.base_url` to Paradox properties

```scala
paradoxProperties += ("canonical.base_url" -> "https://developer.lightbend.com/docs/paradox/current/")
paradoxProperties += ("canonical.base_url" -> "https://lightbend.github.io/paradox/")
```

## HTML description tag
Expand Down
Loading