We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7dc74d2 commit feb6c9aCopy full SHA for feb6c9a
htmlify.pl
@@ -432,15 +432,14 @@ (Bool :$debug, Bool :$typegraph = False)
432
say "Writing operator files";
433
for $dr.lookup('operator', :by<kind>).list -> $doc {
434
my $what = $doc.subkind;
435
- my $chunk = $doc.pod;
436
my $op = $doc.name;
437
my $pod = pod-with-title(
438
"$what.tclc() $op operator",
439
pod-block(
440
"Documentation for $what $op, extracted from ",
441
pod-link("the operators language documentation", "/language/operators")
442
),
443
- @$chunk
+ @($doc.pod),
444
);
445
spurt "html/op/$what/$op.html", p2h($pod);
446
}
0 commit comments