We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 628d23c commit 3df4286Copy full SHA for 3df4286
src/main/kotlin/com/github/lppedd/cc/parser/strictConventionalCommit.flex
@@ -155,7 +155,7 @@ FooterType = [^\s:][^:\r\n]*
155
156
<BODY> {
157
// Body until a footer starts (footer is NOT consumed)
158
- [^] / {NL}({FooterType}: | {FooterType}{WS}#) {
+ [^] / {NL}+({FooterType}: | {FooterType}{WS}#) {
159
appendText(yytext());
160
yybegin(FOOTERS);
161
return token(CCToken.Type.BODY, getTextAndReset());
0 commit comments