mirror of
https://github.com/neovim/neovim.git
synced 2025-11-17 15:51:32 +00:00
fix(docs): vimdoc syntax errors
gen_help_html: truncate parse-error sample text
This commit is contained in:
@@ -19,11 +19,12 @@ describe(':help docs', function()
|
||||
local rv = exec_lua([[return require('scripts.gen_help_html').validate('./build/runtime/doc')]])
|
||||
-- Check that we actually found helpfiles.
|
||||
ok(rv.helpfiles > 100, '>100 :help files', rv.helpfiles)
|
||||
|
||||
eq({}, rv.parse_errors, 'no parse errors')
|
||||
eq(0, rv.err_count, 'no parse errors')
|
||||
eq({}, rv.invalid_links, 'invalid tags in :help docs')
|
||||
eq({}, rv.invalid_urls, 'invalid URLs in :help docs')
|
||||
eq({}, rv.invalid_spelling, 'invalid spelling in :help docs')
|
||||
-- Check that parse errors did not increase.
|
||||
ok(rv.err_count == 0, 'no parse errors', rv.err_count)
|
||||
eq({}, rv.invalid_spelling, 'invalid spelling in :help docs (see spell_dict in scripts/gen_help_html.lua)')
|
||||
end)
|
||||
|
||||
it('gen_help_html.lua generates HTML', function()
|
||||
|
||||
Reference in New Issue
Block a user