It looks like you're new here. If you want to get involved, click one of these buttons!
I'm trying to set the intermediary for items in a list by including a variable. So, when there are only two items, that should be a space, but I can't set the variable to just be the space character. I've used the _; it doesn't seem to do anything. Any thoughts?
Comments
You should post a snippet from your generator showing what you're trying to do.
To get a literal space, you can set your variable like this, enclosing a space in quotes:
{separator==" "}
You can verify:
see{separator}the{separator}spaces
Is that what you're trying to do, or is it something else?
You can always use & nbsp; instead of a space character (just omit the space I included after the &).