FormatProperties
.
Separator
Insert this item between all items in the container.
Example
=
Block
{
// Separator for each paragraph in the block
Separator
:
Paragraph
{
"-"
*
20;
};
Paragraph
{
// Separator for each span in the paragraph
Separator
:
" - "
;
1
..
10
step
1;
};
"One"
;
"Two"
;
"Three"
;
};
1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10
--------------------
One
--------------------
Two
--------------------
Three