• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/H12-May-2021-4,968719

t/H12-May-2021-149105

ChangesH A D12-May-20211.2 KiB4723

LICENSEH A D12-May-202118 KiB380292

MANIFESTH A D12-May-20211.6 KiB4847

META.jsonH A D12-May-202121.3 KiB618616

META.ymlH A D12-May-202114.1 KiB460459

Makefile.PLH A D12-May-20211.2 KiB5947

READMEH A D12-May-20215.1 KiB182105

dist.iniH A D12-May-2021262 2215

weaver.iniH A D12-May-202136 32

README

1NAME
2    BorderStyles::Standard - A standard collection of border styles
3
4VERSION
5    This document describes version 0.007 of BorderStyles::Standard (from
6    Perl distribution BorderStyles-Standard), released on 2021-05-12.
7
8BORDER STYLES
9    *   BorderStyle::ASCII::None
10
11        No borders, but data row separator is still drawn using dashes.
12
13    *   BorderStyle::ASCII::SingleLine
14
15        Single line border with ASCII characters.
16
17    *   BorderStyle::ASCII::SingleLineDoubleAfterHeader
18
19        Just like ASCII::SingleLine but uses double line to separate header
20        row and first data row.
21
22    *   BorderStyle::ASCII::SingleLineHorizontalOnly
23
24        Single line border with ASCII characters, horizontal only.
25
26    *   BorderStyle::ASCII::SingleLineInnerOnly
27
28        Single line border with ASCII characters, between columns only.
29
30    *   BorderStyle::ASCII::SingleLineOuterOnly
31
32        Single line border with ASCII characters, outer borders only.
33
34    *   BorderStyle::ASCII::SingleLineVerticalOnly
35
36        Single line border with ASCII characters, vertical only.
37
38    *   BorderStyle::ASCII::Space
39
40        Space as borders, but data row separator is still drawn using
41        dashes.
42
43    *   BorderStyle::ASCII::SpaceInnerOnly
44
45        No borders, but columns are still separated using spaces and data
46        row separator is still drawn using dashes.
47
48    *   BorderStyle::BoxChar::None
49
50        No borders, but data row separator is still drawn using horizontal
51        line.
52
53    *   BorderStyle::BoxChar::SingleLine
54
55        Single line border with box-drawing characters.
56
57    *   BorderStyle::BoxChar::SingleLineHorizontalOnly
58
59        Single line border with box-drawing characters, horizontal only.
60
61    *   BorderStyle::BoxChar::SingleLineInnerOnly
62
63        Single line border with box-drawing characters, between columns
64        only.
65
66    *   BorderStyle::BoxChar::SingleLineOuterOnly
67
68        Single line border with box-drawing characters, outer borders only.
69
70    *   BorderStyle::BoxChar::SingleLineVerticalOnly
71
72        Single line border with box-drawing characters, vertical only.
73
74    *   BorderStyle::BoxChar::Space
75
76        Space as borders, but data row separator is still drawn using
77        horizontal line.
78
79    *   BorderStyle::BoxChar::SpaceInnerOnly
80
81        No borders, but columns are still separated using spaces and data
82        row separator is still drawn using horizontal line.
83
84    *   BorderStyle::UTF8::Brick
85
86        Single-line, bold on bottom right to give illusion of depth.
87
88    *   BorderStyle::UTF8::BrickOuterOnly
89
90        Single-line (outer only), bold on bottom right to give illusion of
91        depth.
92
93    *   BorderStyle::UTF8::DoubleLine
94
95        Double-line border with UTF8 characters.
96
97    *   BorderStyle::UTF8::None
98
99        No borders, but data row separator is still drawn using horizontal
100        line.
101
102    *   BorderStyle::UTF8::SingleLine
103
104        Single-line border with UTF8 characters.
105
106    *   BorderStyle::UTF8::SingleLineBold
107
108        Bold single-line border with UTF8 characters.
109
110    *   BorderStyle::UTF8::SingleLineBoldHeader
111
112        Single-line border (header box bold) with UTF8 characters.
113
114    *   BorderStyle::UTF8::SingleLineCurved
115
116        Single-line border with UTF8 characters, curved edges.
117
118    *   BorderStyle::UTF8::SingleLineDoubleAfterHeader
119
120        Just like UTF8::SingleLine but uses double line to separate header
121        row and first data row.
122
123    *   BorderStyle::UTF8::SingleLineHorizontalOnly
124
125        Single line border with box-drawing characters, horizontal only.
126
127    *   BorderStyle::UTF8::SingleLineInnerOnly
128
129        Single line border with UTF8 characters, between columns only.
130
131    *   BorderStyle::UTF8::SingleLineOuterOnly
132
133        Single line border with UTF8 characters, outer borders only.
134
135    *   BorderStyle::UTF8::SingleLineVerticalOnly
136
137        Single line border with UTF8 characters, vertical only.
138
139    *   BorderStyle::UTF8::Space
140
141        Space as borders, but data row separator is still drawn using
142        horizontal line.
143
144    *   BorderStyle::UTF8::SpaceInnerOnly
145
146        No borders, but columns are still separated using spaces and data
147        row separator is still drawn using horizontal line.
148
149HOMEPAGE
150    Please visit the project's homepage at
151    <https://metacpan.org/release/BorderStyles-Standard>.
152
153SOURCE
154    Source repository is at
155    <https://github.com/perlancar/perl-BorderStyles-Standard>.
156
157BUGS
158    Please report any bugs or feature requests on the bugtracker website
159    <https://rt.cpan.org/Public/Dist/Display.html?Name=BorderStyles-Standard
160    >
161
162    When submitting a bug or request, please include a test-file or a patch
163    to an existing test-file that illustrates the bug or desired feature.
164
165SEE ALSO
166    BorderStyle - specification
167
168    App::BorderStyleUtils - CLIs
169
170    Text::Table::TinyBorderStyle, Text::ANSITable - some table renderers
171    that can use border styles
172
173AUTHOR
174    perlancar <perlancar@cpan.org>
175
176COPYRIGHT AND LICENSE
177    This software is copyright (c) 2021, 2020 by perlancar@cpan.org.
178
179    This is free software; you can redistribute it and/or modify it under
180    the same terms as the Perl 5 programming language system itself.
181
182