From: Dan Allen Date: Wed, 18 Mar 2020 21:07:32 +0000 (-0600) Subject: add blank line after regexp constant in helper X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=759b79160bb9bf1bd9c0abb52e6398d780d35ee2;p=working%2Feg-antora.git add blank line after regexp constant in helper --- diff --git a/src/helpers/detag.js b/src/helpers/detag.js index ca283a2..e32f147 100644 --- a/src/helpers/detag.js +++ b/src/helpers/detag.js @@ -1,4 +1,5 @@ 'use strict' const TAG_ALL_RX = /<[^>]+>/g + module.exports = (html) => html && html.replace(TAG_ALL_RX, '')