Skip to content

Commit

Permalink
Dump links: improve formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Ostrzyciel committed Aug 16, 2024
1 parent 64d532b commit 5921694
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/scala/commands/MainDocGenCommand.scala
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,10 @@ object MainDocGenCommand extends Command:
|
|""".stripMargin
val s2 = dumpLink match
case Some(link) => s + f" A complete dump of all metadata in RiverBench (without benchmark results) is available: " +
case Some(link) => s + f" A complete dump of all metadata in RiverBench (without benchmark results) is available: \n" +
MarkdownUtil.formatMetadataLinks(link, ".gz") + "\n\n"
case None => s
dump2Link match
case Some(link) => s2 + f" A dump including community-contributed benchmark results (via Nanopublications) is also available: " +
case Some(link) => s2 + f" A dump including community-contributed benchmark results (via Nanopublications) is also available: \n" +
MarkdownUtil.formatDatasetMetadataLinks(link, ".gz") + "\n\n"
case None => s2

0 comments on commit 5921694

Please sign in to comment.