Guest User

Untitled

a guest
Dec 17th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. {% assign my_array = "one|two|three" | split: "|" %}
  2.  
  3. ---
  4. my_array:
  5. - one
  6. - two
  7. - three
  8. ---
  9.  
  10. {{ page.my_array }}
  11.  
  12. {{ layout.style }}
  13.  
  14. {% capture my_array %}
  15. one
  16. two
  17. three
  18. {% endcapture %}
  19.  
  20. {% assign my_array = my_array | strip | newline_to_br | strip_newlines | split: "<br />" %}
Add Comment
Please, Sign In to add comment