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