From: Ian Jackson Date: Mon, 3 Dec 2018 12:05:41 +0000 (+0000) Subject: docs/parse-support-md: Allow definition lists for features X-Git-Tag: archive/raspbian/4.14.0+80-gd101b417b7-1+rpi1^2~63^2~2780 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=c242a39b143b235ebcccd48d328fe598ab8db08d;p=xen.git docs/parse-support-md: Allow definition lists for features Now, as well as a `code block', with | Something: some status we tolerate a definition list which in pandoc terms looks like this |Term |: Definition This ought not usually be be used for features but it will be useful for linking to the release notes, because markup is not allowed in code blocks but is in definitions. Signed-off-by: Ian Jackson Acked-by: Juergen Gross --- diff --git a/docs/parse-support-md b/docs/parse-support-md index 16dd99f063..84f0a96a0f 100755 --- a/docs/parse-support-md +++ b/docs/parse-support-md @@ -191,6 +191,33 @@ sub ri_CodeBlock { } } +sub ri_DefinitionList { + my ($c) = @_; + foreach my $defent (@$c) { + my ($term, $defns) = @$defent; + my $descr = + join ' ', + map { $_->{c} } + grep { $_->{t} eq 'Str' } + @$term; + push @insections, + { + Key => descr2key($descr), + Headline => $term, + }; + die "multiple definitions in definition list definition" + if @$defns > 1; + my $defn = $defns->[0]; + die "multiple paras in definition list definition" + if @$defn > 1; + my $defnp = $defn->[0]; + die "only understand plain definition not $defnp->{t} ?" + unless $defnp->{t} eq 'Plain'; + parse_feature_entry $defnp->{c}; + pop @insections; + } +} + sub process_unknown { my ($c, $e) = @_; $had_unknown = Dumper($e);