diff --git a/project/LaikaCustomDirectives.scala b/project/LaikaCustomDirectives.scala index 461cdc901..271e2a3fa 100644 --- a/project/LaikaCustomDirectives.scala +++ b/project/LaikaCustomDirectives.scala @@ -16,9 +16,9 @@ object LaikaCustomDirectives extends DirectiveRegistry { error => InvalidSpan(s"Invalid PyDocs baseUri: $error", source), baseUri => { val companion = if (pyClass.startsWith("graphframes.lib")) { - SpanLink.external(s"$baseUri/graphframes/lib.html#$pyClass") + SpanLink.external(s"$baseUri/graphframes.lib.html#$pyClass") } else if (pyClass.startsWith("graphframes.examples")) { - SpanLink.external(s"$baseUri/graphframes/examples.html#$pyClass") + SpanLink.external(s"$baseUri/graphframes.examples.html#$pyClass") } else { SpanLink.external(s"$baseUri/graphframes.html#$pyClass") }