File tree Expand file tree Collapse file tree 4 files changed +21
-25
lines changed Expand file tree Collapse file tree 4 files changed +21
-25
lines changed Original file line number Diff line number Diff line change 277
277
║ 2 ║ 30 40 35 30 ║
278
278
╚═══╩═══════════════════╝
279
279
```
280
- ### ` double_thin `
281
-
282
- ```
283
- ╔═════╦═══════════════════════╗
284
- ║ # ║ G H R S ║
285
- ╟─────╫───────────────────────╢
286
- ║ 1 ║ 30 40 35 30 ║
287
- ╠═════╬═══════════════════════╣
288
- ║ 2 ║ 30 40 35 30 ║
289
- ╟─────╫───────────────────────╢
290
- ║ SUM ║ 130 140 135 130 ║
291
- ╚═════╩═══════════════════════╝
292
-
293
- ╔═══╦═══════════════════╗
294
- ║ 1 ║ 30 40 35 30 ║
295
- ╠═══╬═══════════════════╣
296
- ║ 2 ║ 30 40 35 30 ║
297
- ╚═══╩═══════════════════╝
298
- ```
299
280
### ` double_thin_compact `
300
281
301
282
```
302
283
╔═════╦═══════════════════════╗
303
284
║ # ║ G H R S ║
304
285
╟─────╫───────────────────────╢
305
286
║ 1 ║ 30 40 35 30 ║
306
- ╠═════╬═══════════════════════╣
307
287
║ 2 ║ 30 40 35 30 ║
308
288
╟─────╫───────────────────────╢
309
289
║ SUM ║ 130 140 135 130 ║
310
290
╚═════╩═══════════════════════╝
311
291
312
292
╔═══╦═══════════════════╗
313
293
║ 1 ║ 30 40 35 30 ║
314
- ╠═══╬═══════════════════╣
315
294
║ 2 ║ 30 40 35 30 ║
316
295
╚═══╩═══════════════════╝
317
296
```
347
326
1 ┃ 30 40 35 30
348
327
2 ┃ 30 40 35 30
349
328
```
329
+ ### ` simple `
330
+
331
+ ```
332
+ ═════ ═════ ═════ ═════ ═════
333
+ # │ G H R S
334
+ ═════ ═════ ═════ ═════ ═════
335
+ 1 │ 30 40 35 30
336
+ 2 │ 30 40 35 30
337
+ ═════ ═════ ═════ ═════ ═════
338
+ SUM │ 130 140 135 130
339
+ ═════ ═════ ═════ ═════ ═════
340
+
341
+ ═══ ════ ════ ════ ════
342
+ 1 │ 30 40 35 30
343
+ 2 │ 30 40 35 30
344
+ ═══ ════ ════ ════ ════
345
+ ```
350
346
### ` ascii `
351
347
352
348
```
Original file line number Diff line number Diff line change 20
20
"double" : styles .double ,
21
21
"double_box" : styles .double_box ,
22
22
"double_compact" : styles .double_compact ,
23
- "double_thin" : styles .double_thin ,
24
23
"double_thin_compact" : styles .double_thin_compact ,
25
24
"minimalist" : styles .minimalist ,
26
25
"borderless" : styles .borderless ,
26
+ "simple" : styles .simple ,
27
27
"ascii" : styles .ascii ,
28
28
"ascii_box" : styles .ascii_box ,
29
29
"ascii_compact" : styles .ascii_compact ,
Original file line number Diff line number Diff line change @@ -17,4 +17,4 @@ class Options:
17
17
last_col_heading : bool = False
18
18
column_widths : Optional [List [int ]] = None
19
19
alignments : Optional [List [Alignment ]] = None
20
- style : TableStyle = styles .double_thin
20
+ style : TableStyle = styles .double_thin_compact
Original file line number Diff line number Diff line change 15
15
double = TableStyle .from_string ("╔═╦═╗║║ ╠═╬═╣╠═╬═╣╚╩═╝" )
16
16
double_box = TableStyle .from_string ("╔═╦╦╗║║║╠═╬╬╣╠═╬╬╣╚╩╩╝" )
17
17
double_compact = TableStyle .from_string ("╔═╦═╗║║ ╠═╬═╣ ╚╩═╝" )
18
- double_thin = TableStyle .from_string ("╔═╦═╗║║ ╟─╫─╢╠═╬═╣╚╩═╝" )
19
- double_thin_compact = TableStyle .from_string ("╔═╦═╗║║ ╟─╫─╢╠═╬═╣╚╩═╝" )
18
+ double_thin_compact = TableStyle .from_string ("╔═╦═╗║║ ╟─╫─╢ ╚╩═╝" )
20
19
minimalist = TableStyle .from_string (" ─── │ ━━━ ─── ── " )
21
20
borderless = TableStyle .from_string (" ┃ ━ " )
21
+ simple = TableStyle .from_string (" ═ │ ═ " )
22
22
ascii = TableStyle .from_string ("+-+-+|| +-+-++-+-+++-+" )
23
23
ascii_box = TableStyle .from_string ("+-+++|||+-++++-+++++++" )
24
24
ascii_compact = TableStyle .from_string ("+-+-+|| +-+-+ ++-+" )
You can’t perform that action at this time.
0 commit comments