diff --git a/src/main/kotlin/org/openrewrite/RecipeMarkdownGenerator.kt b/src/main/kotlin/org/openrewrite/RecipeMarkdownGenerator.kt index dd38b4d..081c767 100644 --- a/src/main/kotlin/org/openrewrite/RecipeMarkdownGenerator.kt +++ b/src/main/kotlin/org/openrewrite/RecipeMarkdownGenerator.kt @@ -777,7 +777,11 @@ class RecipeMarkdownGenerator : Runnable { writeln("### Tags") newLine() for (tag in recipeDescriptor.tags) { - writeln("* $tag") + if (tag.lowercase().startsWith("rspec-")) { + writeln("* [$tag](https://sonarsource.github.io/rspec/#/rspec/S${tag.substring(6)})") + } else { + writeln("* $tag") + } } newLine() }