diff --git a/src/config/constants.js b/src/config/constants.js index 81be4e93e..bf1e26ae5 100644 --- a/src/config/constants.js +++ b/src/config/constants.js @@ -72,7 +72,7 @@ export const CHANGELOG_SECTION_REGEX = new RegExp( * @type {RegExp} */ export const ENTRY_FORMATTING_PATTERN_REGEX = new RegExp( - `([^a-zA-Z])?\\s*([a-zA-Z0-9]+):?(.*)?` + `([^a-zA-Z])?\\s*(.*):?(.*)?` ); // Explanation: // - '-\\s*' matches a hyphen followed by any number of whitespace characters up until the first capturing group.