NAME Data::Format::Pretty::HTML - Pretty-print data structure for HTML output VERSION This document describes version 0.11 of Data::Format::Pretty::HTML (from Perl distribution Data-Format-Pretty-HTML), released on 2017-07-10. SYNOPSIS In your program: use Data::Format::Pretty::HTML qw(format_pretty); ... print format_pretty($result); Some example output: Scalar, format_pretty("foo & bar"): foo & bar Scalar multiline, format_pretty("foo\nbar\nbaz"):
foo
     bar
     baz
List, format_pretty([qw/foo bar baz qux/]):
foo
bar
baz
qux
Hash, format_pretty({foo=>"data",bar=>"format",baz=>"pretty",qux=>"html"}):
keyvalue
barformat
bazpretty
foodata
quxhtml
2-dimensional array, format_pretty([ [1, 2, ""], [28, "bar", 3], ["foo", 3, undef] ]):
column0column1column2
12
28bar3
foo3
An array of hashrefs, such as commonly found if you use DBI's fetchrow_hashref() and friends, format_pretty([ {a=>1, b=>2}, {b=>2, c=>3}, {c=>4} ]):
abc
12
23
4
Some more complex data, format_pretty({summary => "Blah...", users => [{name=>"budi", domains=>["f.com", "b.com"], quota=>"1000"}, {name=>"arif", domains=>["baz.com"], quota=>"2000"}], verified => 0}):
summary Blah...
users
domainsnamequota
f.com, b.combudi1000
baz.comarif2000
verified 0
Structures which can't be handled yet will simply be output as YAML, format_pretty({a => {b=>1}}):
a:
       b: 1
     
DESCRIPTION This module has the same spirit as Data::Format::Pretty::Console (and currently implemented as its subclass). The idea is to throw it some data structure and let it figure out how to best display the data in a pretty HTML format. Differences with Data::Format::Pretty::Console: * hot (hash of table) structure is rendered as table of inner tables FUNCTIONS format_pretty($data, \%opts) Return formatted data structure as HTML. Options: * table_column_orders => [[colname, colname], ...] See Data::Format::Pretty::Console for more details. * linkify_urls_in_text => BOOL Whether to convert 'http://foo' in text into 'http://foo'. Default is true. HOMEPAGE Please visit the project's homepage at . SOURCE Source repository is at . BUGS Please report any bugs or feature requests on the bugtracker website When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature. SEE ALSO Data::Format::Pretty AUTHOR perlancar COPYRIGHT AND LICENSE This software is copyright (c) 2017, 2015, 2014, 2013, 2012, 2011 by perlancar@cpan.org. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.