Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
551 views
in Technique[技术] by (71.8m points)

properties - Can I separate tags with comma in HTL Slightly?

My problem is: I have to customize properties of a meta tag on AEM Console.

I have this meta tag:

<meta name="tags" data-sly-test="${properties.tag}" content="${properties.tag}" />

If an utent add more attributes on AEM console, I need that these attributes are separeted by ';'.

The output should be:

<meta name="tags" content="hello;world;laptop;screen"/> 
question from:https://stackoverflow.com/questions/65917442/can-i-separate-tags-with-comma-in-htl-slightly

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can use the join option (https://github.com/adobe/htl-spec/blob/master/SPECIFICATION.md#124-array-join):

content="${properties.tag @ join=';'}"

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...