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
I have a doubt, I am working on this [pull request](https://github.com/quarkiverse/quarkus-qute-web/pull/102) to make a PoC with this tooling (thank you for this great job)!
I have a test here:
@TestpublicvoidtestH1() {
Engineengine = Engine.builder().addDefaults()
.addSectionHelper(newAsciidocSectionHelperFactory()).build();
Stringresult = engine.parse("{#ascii}= Quarkus and Roq{/ascii}").render();
assertThat(result).contains("<h1>Quarkus and Roq</h1>");
}
The result is "" but the expected is to have <h1>..., It happens when I add noheader attribute, is it the expected behavior?
I have a test here:
The result is "" but the expected is to have
<h1>...
, It happens when I addnoheader
attribute, is it the expected behavior?I think it should be
<h1>...
no?Originally posted by @mcruzdev in #18 (comment)
The text was updated successfully, but these errors were encountered: