Can't recursively concat
See original GitHub issueIs this the expected behaviour for liquid, to not be able to assign recursively?
{% assign yes = "yes" | split: "," %}
<h5>Does concat work?</h5>
{% assign yes = yes | concat: yes %}
{{ yes }}
Prints out [“yes”], as opposed to [“yes”, “yes”]
Issue Analytics
- State:
- Created 6 years ago
- Comments:6 (2 by maintainers)
Top Results From Across the Web
recursion cannot concatenate 'int' and 'NoneType'
So somehow this code returns a NoneType , which I cannot concatenate with the int to a list . I assume that blsort(L[1:])...
Read more >Can't understand a recursive definition of concatenation of two ...
I'm reading Rosen's Discrete Mathematics and its applications(6ed), but I can't understand a recursive definition about concatenation of two ...
Read more >Recursion
A function with no recursive cases is not recursive ! At least one parameter to the function must change through the recursive call....
Read more >Help with recursive problem returning a concatentation of a ...
Write a recursive function extractStr() that takes an arbitrarily nested list as a parameter and returns a string that consists of the ...
Read more >Recursive macro call inside concat macro fails to find ... - GitHub
Recursive macro call inside concat macro fails to find macros referred to by $crate #63460 ... A-macros Area: All kinds of macros (custom...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
It’s because not implemented. Now it’s available in 2.0.0 by this commit.
Thanks!