The half line box drawing characters
This commit is contained in:
parent
ce084c4c3f
commit
3f91ae3037
1 changed files with 12 additions and 0 deletions
|
|
@ -123,6 +123,18 @@ def horz_t(*args, a=1, b=1, c=1, which=None):
|
|||
'┇': [p(vholes, num=2, level=3)],
|
||||
'┊': [p(vholes, num=3)],
|
||||
'┋': [p(vholes, num=3, level=3)],
|
||||
'╴': [half_hline],
|
||||
'╵': [half_vline],
|
||||
'╶': [p(half_hline, which='right')],
|
||||
'╷': [p(half_vline, which='bottom')],
|
||||
'╸': [p(half_hline, level=3)],
|
||||
'╹': [p(half_vline, level=3)],
|
||||
'╺': [p(half_hline, which='right', level=3)],
|
||||
'╻': [p(half_vline, which='bottom', level=3)],
|
||||
'╼': [half_hline, p(half_hline, level=3, which='right')],
|
||||
'╽': [half_vline, p(half_vline, level=3, which='bottom')],
|
||||
'╾': [p(half_hline, level=3), p(half_hline, which='right')],
|
||||
'╿': [p(half_vline, level=3), p(half_vline, which='bottom')],
|
||||
}
|
||||
|
||||
t, f = 1, 3
|
||||
|
|
|
|||
Loading…
Reference in a new issue