[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 3/3] docs/parse-support-md: Correctly process caveats in multi-status sections
When SUPPORT.md uses the syntax Status, <some thing>: <support status> the caveats were lost (not footnoted) because they were attached only to <some thing>. Caveats occur in running text, so they are necessarily part of a real section, not an individual status line like that. So attach them to the RealSectNode, and look there for them. Reported-by: Lars Kurth <lars.kurth@xxxxxxxxxx> Signed-off-by: Ian Jackson <Ian.Jackson@xxxxxxxxxxxxx> --- docs/parse-support-md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/parse-support-md b/docs/parse-support-md index 278072f..99ce547 100755 --- a/docs/parse-support-md +++ b/docs/parse-support-md @@ -34,7 +34,7 @@ our $toplevel_sectlist = new_sectlist(); # $sectlist->{KEY}{Children} = a further $sectlist # $sectlist->{KEY}{Key} = KEY # $sectlist->{KEY}{RealSectNode} = us, or our parent -# $sectlist->{KEY}{HasCaveat}[VI] = trueish iff other in a Para +# $sectlist->{KEY}{RealSectNode}{HasCaveat}[VI] = trueish iff other in a Para # $sectlist->{KEY}{RealInSect} = containing real section in @insections, so # $sectlist->{KEY}{RealInSect}{HasDescription} = VI for some Emph in Para # $sectlist->{KEY}{RealInSect}{Anchor} = value for < id="" > in the pandoc html @@ -123,7 +123,7 @@ sub ri_Para { if ($had_feature) { my $sectnode = find_current_sectnode(); - $sectnode->{HasCaveat}[$version_index] = 1; + $sectnode->{RealSectNode}{HasCaveat}[$version_index] = 1; } else { $insection->{HasDescription} //= $version_index; } @@ -402,7 +402,7 @@ sub write_output_row ($) { my $nextcell = ''; if (!defined $colspan) { # first row of this RealInSect $colspan= ' colspan="2"'; - if ($sectnode->{HasCaveat}[$i] && $st + if ($sectnode->{RealSectNode}{HasCaveat}[$i] && $st && $sectnode->{RealInSect}{Anchor}) { my $rows = $sectnode->{RealInSect}{OwnRows}; $nextcell = '<td'; -- 2.1.4 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |