We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using Asciidoctor callouts, I'd like to be able to have a space after a ( and before a //:
(
//
RestAssured.given(this.spec).filter(document("headers", requestHeaders( // <1>
This fails at the moment with the message '(' is followed by whitespace. [ParenPad]. The following fixes it:
'(' is followed by whitespace. [ParenPad]
RestAssured.given(this.spec).filter(document("headers", requestHeaders(// <1>
Removing the space between ( and // has a detrimental affect on the HTML rendering of the callout so I'd like to be able to keep it.
The text was updated successfully, but these errors were encountered:
8bca211
philwebb
No branches or pull requests
When using Asciidoctor callouts, I'd like to be able to have a space after a
(
and before a//
:This fails at the moment with the message
'(' is followed by whitespace. [ParenPad]
. The following fixes it:Removing the space between
(
and//
has a detrimental affect on the HTML rendering of the callout so I'd like to be able to keep it.The text was updated successfully, but these errors were encountered: