[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 4/7] docs/parse-support-md: pandoc2html_inline: print failing json
If our run of pandoc to convert pieces of markup in our hand, into html, fails, print the json that was rejected. No change in non-error cases. Signed-off-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> --- docs/parse-support-md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/docs/parse-support-md b/docs/parse-support-md index e2d0187dd1..a8f216f131 100755 --- a/docs/parse-support-md +++ b/docs/parse-support-md @@ -247,10 +247,11 @@ sub pandoc2html_inline ($) { my ($content) = @_; my $json_fh = IO::File::new_tmpfile or die $!; - print $json_fh to_json([ - { unMeta => { } }, - [{ t => 'Para', c => $content }], - ]) or die $!; + my $j = to_json([ + { unMeta => { } }, + [{ t => 'Para', c => $content }], + ]) or die $!; + print $json_fh $j; flush $json_fh or die $!; seek $json_fh,0,0 or die $!; @@ -270,7 +271,7 @@ sub pandoc2html_inline ($) { open STDIN, '<&', $json_fh or die $!; system 'json_pp'; }; - die "\n $? $!"; + die "$j \n $? $!"; } $html =~ s{^\<p\>}{} or die "$html ?"; -- 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 |