Created
October 20, 2020 21:42
HTML for all iterations of a list except the last using RPL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<#list productNames as names> | |
${names} | |
<!-- If there's another item after this iteration, add an <hr> --> | |
<#if names_has_next> | |
<hr> | |
</#if> | |
</#list> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment