Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Then you put the set function to count +1, because when entering the iteration sums +1 in your count. After that, it calls the mapping that initialized on the set function.

 

${set(count,%{${count} + 1})}

Let's put the mappings that we want to print on the template.

Author

${Comments[n].AuthorFullName}
Body${Comments[n].Body}

 

Now, We are going to use the function continue with a conditional block, when the comment is equal a "Hello Continue".

Code Block
titleExpand to see the sample code
collapsetrue
#{if (%{'${Comments[n].Body}'.equals('Hello Continue')})}
Jump the next comment.
#{continue}
#{end}
Info

We must have comments on your issue and a comment with "Hello Continue".

 

...