You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@bclozel Could you have a look at this please? I suppose those tags were in actual effect at some point but got turned to literal text through some general formatting changes...
The root cause is the presence of asterisks within code blocks that were carried over from the Docbook days, and the PDF generator simply doesn't support that.
For example, the following:
<beanclass="example.SimpleMovieCatalog" **primary="true"**>
<!-- inject any dependencies required by this bean -->
</bean>
Gets converted to:
<beanclass="example.SimpleMovieCatalog" <strong>primary="true"</strong>>
<!-- inject any dependencies required by this bean -->
</bean>
So one solution (perhaps the only solution) is to simply remove all bold formatting (i.e., **xyz**) from all source code blocks throughout the Asciidoc files.
Documentation Spring-Core 5.1.5 as PDF
https://docs.spring.io/spring/docs/current/spring-framework-reference/pdf/core.pdf
There are code samples with a (written)
<strong>
tag, where we should see the code section with a bold font.Examples:
Page 50:
<strong>@RequestScope</strong>
Page 62:
<strong>@SessionScope</strong>
and 29 more occurrences. Please use Ctrl+F.
The text was updated successfully, but these errors were encountered: