Appending site_tags and docs_tags should be reversed.
site_tags: a,b,c,d
docs_tags: e,f,g,h,
So assign all_tags = site_tags | append:docs_tags will cause all_tags be like: a,b,c,de,f,g,h,, generating an error tag de rather than two separated tags d and e :smile_cat:
Appending
site_tags
anddocs_tags
should be reversed.a,b,c,d
e,f,g,h,
So
assign all_tags = site_tags | append:docs_tags
will causeall_tags
be like:a,b,c,de,f,g,h,
, generating an error tagde
rather than two separated tagsd
ande
:smile_cat: