pve-docs/asciidoc-pve.in
Dietmar Maurer aa99b34966 add helper to correctly resolve links
just a start, not ready to use ...
2016-10-06 17:29:03 +02:00

17 lines
255 B
Perl

#!/usr/bin/perl
use strict;
use warnings;
use JSON;
my $data_str = "";
while (<main::DATA>) { $data_str .= $_; }
my $fileinfo = decode_json($data_str);
print to_json($fileinfo, { pretty => 1 });
die "implement something useful instead";
__END__