-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Config Doc - Prepare the arrival of Markdown
For IDEs, we will need to be able to convert our javadoc to Markdown. And obviously, transforming our javadoc to Asciidoc right in the generated YAML files is a bad idea. We now pass the raw Javadoc and it is going to be transformed at a later stage.
- Loading branch information
Showing
20 changed files
with
632 additions
and
449 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 0 additions & 6 deletions
6
...in/java/io/quarkus/annotation/processor/documentation/config/discovery/JavadocFormat.java
This file was deleted.
Oops, something went wrong.
7 changes: 4 additions & 3 deletions
7
...in/java/io/quarkus/annotation/processor/documentation/config/discovery/ParsedJavadoc.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 4 additions & 2 deletions
6
.../io/quarkus/annotation/processor/documentation/config/discovery/ParsedJavadocSection.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
package io.quarkus.annotation.processor.documentation.config.discovery; | ||
|
||
public record ParsedJavadocSection(String title, String details, String deprecated) { | ||
import io.quarkus.annotation.processor.documentation.config.model.JavadocFormat; | ||
|
||
public record ParsedJavadocSection(String title, String details, JavadocFormat format, String deprecated) { | ||
|
||
public static ParsedJavadocSection empty() { | ||
return new ParsedJavadocSection(null, null, null); | ||
return new ParsedJavadocSection(null, null, null, null); | ||
} | ||
} |
Oops, something went wrong.