]> xenbits.xensource.com Git - people/pauldu/xen.git/commitdiff
docs/parse-support-md: Break out descr2key
authorIan Jackson <ian.jackson@eu.citrix.com>
Mon, 3 Dec 2018 12:03:19 +0000 (12:03 +0000)
committerIan Jackson <ian.jackson@eu.citrix.com>
Mon, 10 Dec 2018 15:13:07 +0000 (15:13 +0000)
We are going to want to reuse this.  No functional change.

Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com>
Acked-by: Juergen Gross <jgross@suse.com>
docs/parse-support-md

index bbe4d045e1b1ee1b91e46ae029535c9f789872ef..e2d0187dd186d1da4fe3ff80d18e2910935de365 100755 (executable)
@@ -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 }],
                 };
         }