Skip to content

Commit

Permalink
Better html tables and json ignore example value
Browse files Browse the repository at this point in the history
  • Loading branch information
timtebeek committed Dec 13, 2023
1 parent ad0b123 commit 7a2c632
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ defaultTasks = mutableListOf("run")

tasks.withType<MarkdownToHtmlTask> {
dependsOn("run")
all = true
sourceDir = file("build/docs")
outputDir = file("build/html")
doLast {
Expand Down
3 changes: 3 additions & 0 deletions src/main/kotlin/org/openrewrite/RecipeOption.kt
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
package org.openrewrite

import com.fasterxml.jackson.annotation.JsonIgnore

data class RecipeOption(
val name: String,
val type: String,
@JsonIgnore
val example: String?,
val required: Boolean
): Comparable<RecipeOption> {
Expand Down

0 comments on commit 7a2c632

Please sign in to comment.