summaryrefslogtreecommitdiffstats
path: root/hugolib/shortcode.go
diff options
context:
space:
mode:
Diffstat (limited to 'hugolib/shortcode.go')
-rw-r--r--hugolib/shortcode.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/hugolib/shortcode.go b/hugolib/shortcode.go
index 876e9293f..8ea09feda 100644
--- a/hugolib/shortcode.go
+++ b/hugolib/shortcode.go
@@ -197,7 +197,7 @@ func isInnerShortcode(t *template.Template) (bool, error) {
}
func createShortcodePlaceholder(id int) string {
- return fmt.Sprintf("{#{#%s-%d#}#}", shortcodePlaceholderPrefix, id)
+ return fmt.Sprintf("{-{-%s-%d-}-}", shortcodePlaceholderPrefix, id)
}
const innerNewlineRegexp = "\n"
@@ -507,8 +507,8 @@ func replaceShortcodeTokens(source []byte, prefix string, replacements map[strin
sourceLen := len(source)
start := 0
- pre := []byte("{#{#" + prefix)
- post := []byte("#}#}")
+ pre := []byte("{-{-" + prefix)
+ post := []byte("-}-}")
pStart := []byte("<p>")
pEnd := []byte("</p>")