From 6ca2fbb31c5cdf50b946b50f3f814f39a8f1cfbe Mon Sep 17 00:00:00 2001 From: Beniamin Kalinowski Date: Sun, 11 Sep 2022 00:16:14 +0200 Subject: [PATCH] Fixing warnings in the documentation build. (#3687) --- docs/config.ld | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/config.ld b/docs/config.ld index 8ab55afe1..64ac650c5 100644 --- a/docs/config.ld +++ b/docs/config.ld @@ -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