Closed sbrannen closed 2 years ago
As a side note, I have discovered two workarounds for this.
--
[source,java,indent=0,subs="verbatim,quotes",role="primary"]
.Java
----
@PutMapping("/accounts/{account}")
public String save(@ModelAttribute("account") Account account) {
// ...
}
----
[source,kotlin,indent=0,subs="verbatim,quotes",role="secondary"]
.Kotlin
----
@PutMapping("/accounts/{account}")
fun save(@ModelAttribute("account") account: Account): String {
// ...
}
----
--
That was a very quick turnaround. Thanks, @wilkinsona! 👍
Overview
As mentioned in https://github.com/spring-projects/spring-framework/issues/29505 and https://github.com/spring-projects/spring-framework/commit/ac7d428a627e6dabbde500266eaeed4670e37bfb, tabs incorrectly include callouts from other blocks within a section of the generated documentation if some blocks use callouts and others do not.
Related Issues