modify instances of L<B<... |>...>
to B<...>|
#64
+34
−8
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
@thoughtstream The changes in this PR are exclusively related to examples within code blocks with
:allow<B>
.After much thought and discussion with @lizmat , and given it will take a considerable refactoring of the parser to allow for both:
(of which there are two sets of examples)
and
I would suggest that we change the specification document (at least temporarily).
Both of the above are examples in the RakuDoc specification.
The first type is the problem. Essentially, the
B<>
markup has no problem gobbling the|
. But then the outerA<>
can no longer use the|
character to separate the display part from the meta part.Simply placing the
|
character outside the scope of theB<>
markup resolves the problem completely. The final styling effect is minimal.The work around in this PR is to copy the whole code block and place inside a comment block for a future revision, and then to modify the
B<>
markup.@thoughtstream I am requesting a review since this appears to be the remaining outstanding issue we have.