Re: [PATCH 04/10] docs/qapidoc: support header-less freeform sections

2025-02-26 Thread John Snow
On Wed, Feb 26, 2025, 4:37 AM Markus Armbruster wrote: > Markus Armbruster writes: > > > John Snow writes: > > > >> The code as written crashes when a free-form documentation block doesn't > >> start with a heading or subheading, for example: > >> > >> | ## > >> | # Just text, no heading. > >>

Re: [PATCH 04/10] docs/qapidoc: support header-less freeform sections

2025-02-26 Thread Markus Armbruster
Markus Armbruster writes: > John Snow writes: > >> The code as written crashes when a free-form documentation block doesn't >> start with a heading or subheading, for example: >> >> | ## >> | # Just text, no heading. >> | ## >> >> The code will attempt to use the `node` variable uninitialized. T

Re: [PATCH 04/10] docs/qapidoc: support header-less freeform sections

2025-02-24 Thread Markus Armbruster
John Snow writes: > The code as written crashes when a free-form documentation block doesn't > start with a heading or subheading, for example: > > | ## > | # Just text, no heading. > | ## > > The code will attempt to use the `node` variable uninitialized. To fix, > create a generic block to inse

[PATCH 04/10] docs/qapidoc: support header-less freeform sections

2025-02-23 Thread John Snow
The code as written crashes when a free-form documentation block doesn't start with a heading or subheading, for example: | ## | # Just text, no heading. | ## The code will attempt to use the `node` variable uninitialized. To fix, create a generic block to insert the doc text into. (This patch a