BorderStyles-Standard

 view release on metacpan or  search on metacpan

README  view on Meta::CPAN

        Space as borders, but data row separator is still drawn using
        horizontal line.

    *   BorderStyle::BoxChar::SpaceInnerOnly

        No borders, but columns are still separated using spaces and data
        row separator is still drawn using horizontal line.

    *   BorderStyle::UTF8::Brick

        Single-line, bold on bottom right to give illusion of depth.

    *   BorderStyle::UTF8::BrickOuterOnly

        Single-line (outer only), bold on bottom right to give illusion of
        depth.

    *   BorderStyle::UTF8::DoubleLine

        Double-line border with UTF8 characters.

    *   BorderStyle::UTF8::None

        No borders, but data row separator is still drawn using horizontal
        line.

README  view on Meta::CPAN

    *   BorderStyle::UTF8::SingleLine

        Single-line border with UTF8 characters.

    *   BorderStyle::UTF8::SingleLineBold

        Bold single-line border with UTF8 characters.

    *   BorderStyle::UTF8::SingleLineBoldHeader

        Single-line border (header box bold) with UTF8 characters.

    *   BorderStyle::UTF8::SingleLineCurved

        Single-line border with UTF8 characters, curved edges.

    *   BorderStyle::UTF8::SingleLineDoubleAfterHeader

        Just like UTF8::SingleLine but uses double line to separate header
        row and first data row.

lib/BorderStyle/UTF8/Brick.pm  view on Meta::CPAN

│ ..... │ . │ . ┃'
│ ..... ├───┴───┨'
│ ..... │ ..... ┃'
├───┬───┤ ..... ┃'
│ . │ . │ ..... ┃'
┕━━━┷━━━┷━━━━━━━┛'
_

our %BORDER = (
    v => 3,
    summary => 'Single-line, bold on bottom right to give illusion of depth',
    utf8 => 1,
);

1;
# ABSTRACT: Single-line, bold on bottom right to give illusion of depth

__END__

=pod

=encoding UTF-8

=head1 NAME

BorderStyle::UTF8::Brick - Single-line, bold on bottom right to give illusion of depth

=head1 VERSION

This document describes version 0.014 of BorderStyle::UTF8::Brick (from Perl distribution BorderStyles-Standard), released on 2022-02-20.

=head1 SYNOPSIS

To use with L<Text::ANSITable>:

 use Text::ANSITable;

lib/BorderStyle/UTF8/BrickOuterOnly.pm  view on Meta::CPAN

│ .....   .   . ┃'
│ .....         ┃'
│ .....   ..... ┃'
│         ..... ┃'
│ .   .   ..... ┃'
┕━━━━━━━━━━━━━━━┛'
_

our %BORDER = (
    v => 3,
    summary => 'Single-line (outer only), bold on bottom right to give illusion of depth',
    utf8 => 1,
);

1;
# ABSTRACT: Single-line (outer only), bold on bottom right to give illusion of depth

__END__

=pod

=encoding UTF-8

=head1 NAME

BorderStyle::UTF8::BrickOuterOnly - Single-line (outer only), bold on bottom right to give illusion of depth

=head1 VERSION

This document describes version 0.014 of BorderStyle::UTF8::BrickOuterOnly (from Perl distribution BorderStyles-Standard), released on 2022-02-20.

=head1 SYNOPSIS

To use with L<Text::ANSITable>:

 use Text::ANSITable;

lib/BorderStyle/UTF8/SingleLineBoldHeader.pm  view on Meta::CPAN

│ ..... │ ..... │'
├───┬───┤ ..... │'
│ . │ . │ ..... │'
└───┴───┴───────┘'
_
    },
);

our %BORDER = (
    v => 3,
    summary => 'Single-line border (header box bold) with UTF8 characters',
    utf8 => 1,
);

1;
# ABSTRACT: Single-line border (header box bold) with UTF8 characters

__END__

=pod

=encoding UTF-8

=head1 NAME

BorderStyle::UTF8::SingleLineBoldHeader - Single-line border (header box bold) with UTF8 characters

=head1 VERSION

This document describes version 0.014 of BorderStyle::UTF8::SingleLineBoldHeader (from Perl distribution BorderStyles-Standard), released on 2022-02-20.

=head1 SYNOPSIS

To use with L<Text::ANSITable>:

 use Text::ANSITable;

lib/BorderStyles/Standard.pm  view on Meta::CPAN

=item * L<BorderStyle::BoxChar::Space>

Space as borders, but data row separator is still drawn using horizontal line.

=item * L<BorderStyle::BoxChar::SpaceInnerOnly>

No borders, but columns are still separated using spaces and data row separator is still drawn using horizontal line.

=item * L<BorderStyle::UTF8::Brick>

Single-line, bold on bottom right to give illusion of depth.

=item * L<BorderStyle::UTF8::BrickOuterOnly>

Single-line (outer only), bold on bottom right to give illusion of depth.

=item * L<BorderStyle::UTF8::DoubleLine>

Double-line border with UTF8 characters.

=item * L<BorderStyle::UTF8::None>

No borders, but data row separator is still drawn using horizontal line.

=item * L<BorderStyle::UTF8::SingleLine>

Single-line border with UTF8 characters.

=item * L<BorderStyle::UTF8::SingleLineBold>

Bold single-line border with UTF8 characters.

=item * L<BorderStyle::UTF8::SingleLineBoldHeader>

Single-line border (header box bold) with UTF8 characters.

=item * L<BorderStyle::UTF8::SingleLineCurved>

Single-line border with UTF8 characters, curved edges.

=item * L<BorderStyle::UTF8::SingleLineDoubleAfterHeader>

Just like UTF8::SingleLine but uses double line to separate header row and first data row.

=item * L<BorderStyle::UTF8::SingleLineHorizontalOnly>



( run in 0.254 second using v1.01-cache-2.11-cpan-5dc5da66d9d )