Skip to content

Commit b458d48

Browse files
committed
forgot to not remove src. need to get rid of it at some point.
1 parent fb9f029 commit b458d48

File tree

162 files changed

+1600
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

162 files changed

+1600
-0
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
{{%IMPLICIT-ITERATOR}}
2+
{{#array_of_strings}} {{.}} {{/array_of_strings}}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
var array_of_strings = {array_of_strings: ['hello', 'world']};
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
hello world
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
{{%IMPLICIT-ITERATOR iterator=rob}}
2+
{{#array_of_strings_options}} {{rob}} {{/array_of_strings_options}}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
var array_of_strings_options = {array_of_strings_options: ['hello', 'world']};
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
hello world
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Here's a non-sense array of values
2+
3+
{{%IMPLICIT-ITERATOR}}
4+
{{#array}}
5+
{{.}}
6+
{{/array}}

src/test/resources/array_partial.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{{>partial}}

src/test/resources/array_partial.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
var partial_context = {
2+
partial: {
3+
array: ['1', '2', '3', '4']
4+
}
5+
};

src/test/resources/array_partial.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Here's a non-sense array of values
2+
3+
4+
1
5+
2
6+
3
7+
4
8+

0 commit comments

Comments
 (0)