Skip to content

Commit c939c33

Browse files
guilhas07bep
authored andcommitted
parser/pageparser: Don't allow parameters after closing tag in shortcodes
Problem: Previously, the following self-closing shortcode syntax was incorrectly allowed: {{% sc / param %}} Solution: Only allow parameters before the self-closing tag
1 parent bb7b3d3 commit c939c33

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

‎parser/pageparser/pagelexer_shortcode.go

+1
Original file line numberDiff line numberDiff line change
@@ -322,6 +322,7 @@ func lexInsideShortcode(l *pageLexer) stateFunc {
322322
}
323323
l.closingState++
324324
l.isInline = false
325+
l.elementStepNum = 0
325326
l.emit(tScClose)
326327
case r == '\\':
327328
l.ignore()

‎parser/pageparser/pageparser_shortcode_test.go

+3
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,9 @@ var shortCodeLexerTests = []lexerTest{
126126
{"self-closing with param", `{{< sc1 param1 />}}`, []typeText{
127127
tstLeftNoMD, tstSC1, tstParam1, tstSCClose, tstRightNoMD, tstEOF,
128128
}, nil},
129+
{"self-closing with extra keyword", `{{< sc1 / keyword>}}`, []typeText{
130+
tstLeftNoMD, tstSC1, tstSCClose, nti(tError, "closing tag for shortcode 'keyword' does not match start tag"),
131+
}, nil},
129132
{"multiple self-closing with param", `{{< sc1 param1 />}}{{< sc1 param1 />}}`, []typeText{
130133
tstLeftNoMD, tstSC1, tstParam1, tstSCClose, tstRightNoMD,
131134
tstLeftNoMD, tstSC1, tstParam1, tstSCClose, tstRightNoMD, tstEOF,

0 commit comments

Comments
 (0)