big tabs vs spaces adjust
This commit is contained in:
parent
b83bfe5687
commit
1f2c44c82d
6
build.py
6
build.py
|
@ -30,7 +30,7 @@ def split_to_list(str, length, delim=' '):
|
|||
return l
|
||||
|
||||
# build_header using section title
|
||||
def build_header(l_title):
|
||||
def build_header(l_title, add_index=false, index_prefix=None):
|
||||
header = []
|
||||
|
||||
len_title = len(l_title[0])
|
||||
|
@ -49,6 +49,10 @@ def build_header(l_title):
|
|||
count += 1
|
||||
# lower part
|
||||
header.append(' ' * (pad + pad_left) + '\\\\' + '_' * len_border + '//' + ' ' * pad)
|
||||
# add navigation tag
|
||||
if add_index == true and index_prefix.length == 1:
|
||||
pass
|
||||
else:
|
||||
header.append(' ' * MAX_WIDTH)
|
||||
|
||||
return header
|
||||
|
|
Loading…
Reference in New Issue