Fixing warnings in the documentation build. (#3687)

This commit is contained in:
Beniamin Kalinowski 2022-09-11 00:16:14 +02:00 committed by GitHub
parent 5ea654ee6b
commit 6ca2fbb31c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1994,7 +1994,7 @@ local function detect_markdown_footguns(string)
-- Detect unquoted code with 2 underscores. They will render as italic,
-- which is definitively not wanted. Add "`" to fix.
for part in line:gmatch("[^`]*") do
for part in line:gmatch("[^`]*`?") do
if not is_tick then
local count = 0