Skip to content

Commit

Permalink
Don't produce newlines in tables
Browse files Browse the repository at this point in the history
  • Loading branch information
timtebeek committed Dec 21, 2023
1 parent c982d23 commit 0f177c8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/kotlin/org/openrewrite/RecipeMarkdownGenerator.kt
Original file line number Diff line number Diff line change
Expand Up @@ -809,7 +809,6 @@ class RecipeMarkdownGenerator : Runnable {
)
}


// Options
if (recipeDescriptor.options.isNotEmpty()) {
writeln(
Expand Down Expand Up @@ -843,7 +842,7 @@ class RecipeMarkdownGenerator : Runnable {
writeln(
"""
| `${option.type}` | ${option.name} | $description | $example |
""".trimIndent()
""".trimIndent().replace("\n", "<br/>")
)
}
newLine()
Expand Down

0 comments on commit 0f177c8

Please sign in to comment.