Open
Description
raku --doc=Markdown
on a file containing a declarator block renders any B<whatever>
therein as-such, as opposed to the expected **whatever**
.
Here's an example. Take, say
#!/usr/bin/env raku
use v6;
#| B<boo>
sub f($x) {1}
#= I<hoo>
If I run raku --doc=Markdown
on that file I get
### sub f
```raku
sub f(
$x
) returns Mu
```
B<boo>
I<hoo>
By contrast, B<boo>
renders fine as **boo**
inside a =head1
for instance, or between =begin/end pod
markers, etc.
PS
I am not sure whether this is related, but it too is about declarator blocks.
Metadata
Metadata
Assignees
Labels
No labels
Activity