I want get tag head in product description [1]: https://i.stack.imgur.com/LJ19D.png
https://i.stack.imgur.com/xXaef.png
into tag li
so how do i do ?
I want get tag head in product description [1]: https://i.stack.imgur.com/LJ19D.png
https://i.stack.imgur.com/xXaef.png
into tag li
so how do i do ?
2
Answers
In this case, first you should add specific character at before and after of head tag
for example,
<!-- split-production --> Production Details <!-- split-production -->
Then you can split by
<!-- split-production -->
like this{% assign productDescription = product.description | split:"<!-- split-production -->"%}
Then display it as array!
{{ productDescription[0] }}
etc…That’s how you can add head tag in to the li tag.