summaryrefslogtreecommitdiffstats
path: root/resources/postpub/postpub.go
diff options
context:
space:
mode:
Diffstat (limited to 'resources/postpub/postpub.go')
-rw-r--r--resources/postpub/postpub.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/resources/postpub/postpub.go b/resources/postpub/postpub.go
index 85b4221fd..c11dda577 100644
--- a/resources/postpub/postpub.go
+++ b/resources/postpub/postpub.go
@@ -39,7 +39,11 @@ type PostPublishedResource interface {
const (
PostProcessPrefix = "__h_pp_l1"
- PostProcessSuffix = "__e"
+
+ // The suffix has an '=' in it to prevent the minifier to remove any enclosing
+ // quoutes around the attribute values.
+ // See issue #8884.
+ PostProcessSuffix = "__e="
)
func NewPostPublishResource(id int, r resource.Resource) PostPublishedResource {