From feb3c9f6826e785972d9b65b7516f0e5438ef68b Mon Sep 17 00:00:00 2001 From: Daniel Rozenberg Date: Thu, 30 May 2024 13:28:06 -0400 Subject: [PATCH] Fix for incorrectly applied `[filter ...]` tags in Markdown processor (#6806) --- gulpfile.js/staticify.js | 1 + 1 file changed, 1 insertion(+) diff --git a/gulpfile.js/staticify.js b/gulpfile.js/staticify.js index 53c0338a80a..1a9c660a88c 100644 --- a/gulpfile.js/staticify.js +++ b/gulpfile.js/staticify.js @@ -108,6 +108,7 @@ async function staticify(done) { through.obj(async (file, enc, callback) => { const configObj = { requestPath: `${file.path.replace(requestPathRegex, '')}/`, + level: 'beginner', // Some filters require any level to be set, so we set a default here. format, requestedFormat: format, };