1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-09-02 12:41:14 +03:00

Lists can now be used outside of p and text tags.

This allows for more flexible document structuring.
This commit is contained in:
David Steele
2016-05-26 09:34:03 -04:00
parent 5a85122841
commit 0fb8bcbfb7
9 changed files with 80 additions and 27 deletions

View File

@@ -29,6 +29,10 @@ use constant HTML_DIV => 'div';
push @EXPORT, qw(HTML_DIV);
use constant HTML_SPAN => 'span';
push @EXPORT, qw(HTML_SPAN);
use constant HTML_UL => 'ul';
push @EXPORT, qw(HTML_UL);
use constant HTML_LI => 'li';
push @EXPORT, qw(HTML_LI);
####################################################################################################################################
# CONSTRUCTOR