fix detection of short description start

now that labels are no longer bolded in the text rendering, the header
detection code needs updating
develop
myk002 2022-08-19 16:19:19 -07:00
parent 95cd8f9d54
commit 751c2eb7d1
No known key found for this signature in database
GPG Key ID: 8A39CA0FA0C16E78
1 changed files with 1 additions and 1 deletions

@ -191,7 +191,7 @@ local function update_entry(entry, iterator, opts)
_,_,tags = line:trim():find('[*]*Tags:[*]* *(.*)')
in_tags, tags_found = true, true
elseif not short_help_found and
line:find('^%w') then
line:find('^%w') and not line:find('^%w+:') then
if in_short_help then
entry.short_help = entry.short_help .. ' ' .. line
else