12
12
" Usage:
13
13
" :cd doc
14
14
" :helptags .
15
- " :source mkhtml .vim
15
+ " :source makehtml .vim
16
16
" :call MakeHtmlAll()
17
17
18
- function ! MakeHtmlAll ()
18
+ function ! MakeHtmlAll (... )
19
+ let conceal = get (a: 000 , 0 , 1 ) " Enable concealing by default.
19
20
let s: log = []
20
21
call MakeTagsFile ()
21
22
echo " "
22
23
let files = split (glob (' *.??[tx]' ), ' \n' )
23
24
for i in range (len (files ))
24
25
let file = files [i ]
25
26
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 )
27
28
echon " *DONE*"
28
29
echo " "
29
30
endfor
@@ -58,13 +59,13 @@ function! MakeTagsFile()
58
59
endfor
59
60
endfunction
60
61
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 )
63
64
silent quit !
64
65
return r
65
66
endfunction
66
67
67
- function ! MakeHtml2 (src , dst)
68
+ function ! MakeHtml2 (src , dst, conceal )
68
69
silent new `= a: src `
69
70
70
71
" 2html options
@@ -83,7 +84,7 @@ function! MakeHtml2(src, dst)
83
84
silent ! call tohtml#Convert2HTML (1 , line (' $' ))
84
85
85
86
let lang = s: GetLang (a: src )
86
- silent % s @ <span class="\(helpHyperTextEntry\|helpHyperTextJump\|helpOption\|helpCommand\)"> \( [^<]*\)</span> @ \= s: MakeLink (lang, submatch (1 ), submatch (2 ))@g e
87
+ silent % s @ <span class="\(helpHyperTextEntry\|helpHyperTextJump\|helpOption\|helpCommand\)"> \( [^<]*\)</span> @ \= s: MakeLink (lang, submatch (1 ), submatch (2 ), a: conceal )@g e
87
88
silent % s @ ^<span class="Ignore"> < ;</span> \z e @ \& nbsp;@g e
88
89
silent % s @ <span class="\(helpStar\|helpBar\|Ignore\)"> [^<]*</span> @ @g e
89
90
call s: TranslateHelpExampleBlock ()
@@ -146,19 +147,23 @@ function! s:Footer()
146
147
call append (search (' ^</body' , ' wn' ) - 1 , footer)
147
148
endfunction
148
149
149
- function ! s: MakeLink (lang, hlname, tagname)
150
+ function ! s: MakeLink (lang, hlname, tagname, conceal )
150
151
let tagname = a: tagname
151
152
let tagname = substitute (tagname, ' <' , ' <' , ' g' )
152
153
let tagname = substitute (tagname, ' >' , ' >' , ' g' )
153
154
let tagname = substitute (tagname, ' &' , ' \&' , ' 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
161
156
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
162
167
endif
163
168
let tags = s: GetTags (a: lang )
164
169
if has_key (tags , tagname)
0 commit comments