[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 2/3] docs/parse-support-md: Provide $sectnode->{RealSectNode}
No functional change yet. Signed-off-by: Ian Jackson <Ian.Jackson@xxxxxxxxxxxxx> --- docs/parse-support-md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/parse-support-md b/docs/parse-support-md index 8af3acc..278072f 100755 --- a/docs/parse-support-md +++ b/docs/parse-support-md @@ -33,6 +33,7 @@ our $toplevel_sectlist = new_sectlist(); # $sectlist->{KEY}{Status}[VI] = absent or markdown content # $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}{RealInSect} = containing real section in @insections, so # $sectlist->{KEY}{RealInSect}{HasDescription} = VI for some Emph in Para @@ -71,6 +72,7 @@ sub find_current_sectnode () { my $sectnode; my $realinsect; + my $realsectnode; foreach my $s (@insections) { my $sectlist = $sectnode ? $sectnode->{Children} : $toplevel_sectlist; @@ -87,6 +89,8 @@ sub find_current_sectnode () { HasCaveat => [], }; $sectnode = $sectlist->{$key}; + $realsectnode = $sectnode if $s->{Anchor}; + $sectnode->{RealSectNode} = $realsectnode; } die unless $sectnode; return $sectnode; -- 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 |