Created
April 19, 2022 15:01
-
-
Save kaustubhgupta/a12f39ff33aa866c7af28b5b1106ef00 to your computer and use it in GitHub Desktop.
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
{% macro generateList(input_list)%} | |
<ul> | |
{% for i in input_list %} | |
<li>{{i}}</li> | |
{% endfor %} | |
</ul> | |
{% endmacro %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment