Skip to content

Commit f649f3c

Browse files
committed
Enable concealing (Issue #116)
1 parent 207bc51 commit f649f3c

File tree

1 file changed

+20
-15
lines changed

1 file changed

+20
-15
lines changed

tools/makehtml.vim

+20-15
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,19 @@
1212
" Usage:
1313
" :cd doc
1414
" :helptags .
15-
" :source mkhtml.vim
15+
" :source makehtml.vim
1616
" :call MakeHtmlAll()
1717

18-
function! MakeHtmlAll()
18+
function! MakeHtmlAll(...)
19+
let conceal = get(a:000, 0, 1) " Enable concealing by default.
1920
let s:log = []
2021
call MakeTagsFile()
2122
echo ""
2223
let files = split(glob('*.??[tx]'), '\n')
2324
for i in range(len(files))
2425
let file = files[i]
2526
echon printf("%d/%d %s -> %s", i+1, len(files), files[i], s:HtmlName(files[i]))
26-
call MakeHtml(file)
27+
call MakeHtml(file, conceal)
2728
echon " *DONE*"
2829
echo ""
2930
endfor
@@ -58,13 +59,13 @@ function! MakeTagsFile()
5859
endfor
5960
endfunction
6061

61-
function! MakeHtml(fname)
62-
let r = MakeHtml2(a:fname, s:HtmlName(a:fname))
62+
function! MakeHtml(fname, conceal)
63+
let r = MakeHtml2(a:fname, s:HtmlName(a:fname), a:conceal)
6364
silent quit!
6465
return r
6566
endfunction
6667

67-
function! MakeHtml2(src, dst)
68+
function! MakeHtml2(src, dst, conceal)
6869
silent new `=a:src`
6970

7071
" 2html options
@@ -83,7 +84,7 @@ function! MakeHtml2(src, dst)
8384
silent! call tohtml#Convert2HTML(1, line('$'))
8485

8586
let lang = s:GetLang(a:src)
86-
silent %s@<span class="\(helpHyperTextEntry\|helpHyperTextJump\|helpOption\|helpCommand\)">\([^<]*\)</span>@\=s:MakeLink(lang, submatch(1), submatch(2))@ge
87+
silent %s@<span class="\(helpHyperTextEntry\|helpHyperTextJump\|helpOption\|helpCommand\)">\([^<]*\)</span>@\=s:MakeLink(lang, submatch(1), submatch(2), a:conceal)@ge
8788
silent %s@^<span class="Ignore">&lt;</span>\ze&nbsp;@\&nbsp;@ge
8889
silent %s@<span class="\(helpStar\|helpBar\|Ignore\)">[^<]*</span>@@ge
8990
call s:TranslateHelpExampleBlock()
@@ -146,19 +147,23 @@ function! s:Footer()
146147
call append(search('^</body', 'wn') - 1, footer)
147148
endfunction
148149

149-
function! s:MakeLink(lang, hlname, tagname)
150+
function! s:MakeLink(lang, hlname, tagname, conceal)
150151
let tagname = a:tagname
151152
let tagname = substitute(tagname, '&lt;', '<', 'g')
152153
let tagname = substitute(tagname, '&gt;', '>', 'g')
153154
let tagname = substitute(tagname, '&amp;', '\&', 'g')
154-
if a:hlname == "helpHyperTextEntry"
155-
let sep = "*"
156-
elseif a:hlname == "helpHyperTextJump"
157-
let sep = "|"
158-
elseif a:hlname == "helpCommand"
159-
let sep = "`"
160-
elseif a:hlname == "helpOption"
155+
if a:conceal
161156
let sep = ""
157+
else
158+
if a:hlname == "helpHyperTextEntry"
159+
let sep = "*"
160+
elseif a:hlname == "helpHyperTextJump"
161+
let sep = "|"
162+
elseif a:hlname == "helpCommand"
163+
let sep = "`"
164+
elseif a:hlname == "helpOption"
165+
let sep = ""
166+
endif
162167
endif
163168
let tags = s:GetTags(a:lang)
164169
if has_key(tags, tagname)

0 commit comments

Comments
 (0)