[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 3/7] docs/parse-support-md: Break out descr2key
We are going to want to reuse this. No functional change. Signed-off-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> --- docs/parse-support-md | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/docs/parse-support-md b/docs/parse-support-md index bbe4d045e1..e2d0187dd1 100755 --- a/docs/parse-support-md +++ b/docs/parse-support-md @@ -137,6 +137,19 @@ sub parse_feature_entry ($) { $sectnode->{Status}[$version_index] = $value; } +sub descr2key ($) { + my ($descr) = @_; + + die unless @insections; + my $insection = $insections[$#insections]; + + my $key = lc $descr; + $key =~ y/ /-/; + $key =~ y/-0-9A-Za-z//cd; + $key = $insection->{Anchor}.'--'.$key; + return $key; +} + sub ri_CodeBlock { my ($c) = @_; my ($infos, $text) = @$c; @@ -164,17 +177,10 @@ sub ri_CodeBlock { ($toplevel and 'top'). "\n$l\n ?"); - die unless @insections; - my $insection = $insections[$#insections]; - if (length $descr) { - my $key = lc $descr; - $key =~ y/ /-/; - $key =~ y/-0-9A-Za-z//cd; - $key = $insection->{Anchor}.'--'.$key; push @insections, { - Key => $key, + Key => descr2key($descr), Headline => [{ t => 'Str', c => $descr }], }; } -- 2.11.0 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |