Raku / doc-website

Tooling to build/run the documentation website
Artistic License 2.0
7 stars 10 forks source link

fixes issues #275 and #279 #281

Closed finanalyst closed 1 year ago

finanalyst commented 1 year ago

both issues stem from the same problem: text is included in a secondary file from a primary file from a level2 heading. But the section is terminated by a level1 heading, not a level2 heading. The fix is to look for leveln, n-1, n-2, n-3 headings. By specification of RakuDoc, only headings upto level 4 are distinguished. The regex should be made more generic, perhpas by recursion on level, decrementing it to 0, but I don't know how.

finanalyst commented 1 year ago

@coke this fix is not related to any of the UX changes. Would you please review it, and authorise. It is a change to a Regex