[[TOC]] = Repeat = The repeat object is designed to simplify cases where you have a large number of very similar objects nearby each other. == Explanation == The repeat object generates "count" copies of any objects nested within it. Since you can not have multiple copies of the same named object you insert "[n]" somewhere in the name. After parsing, the "n" is replaced with the index of the generated object in the repeat. You can also specify the variable that is replaced as the value of the `var` attribute. This is useful if you need nested repeat objects. '''Important:''' The repeat element does not automatically adjust child element sizing. == Example == For example, the following XML could be simplified by using a repeat element. {{{ #!xml }}} The next snippet uses the repeat element to create the same result. {{{ #!xml }}} == Example - Nested == For example, the following XML could be simplified by using a repeat element. {{{ #!xml }}} The next snippet uses the repeat element to create the same result. {{{ #!xml }}}