Skip to content

Instantly share code, notes, and snippets.

@kaustubhgupta
Created April 18, 2022 10:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kaustubhgupta/18e7c7a768972b13d7001d190532765e to your computer and use it in GitHub Desktop.
Save kaustubhgupta/18e7c7a768972b13d7001d190532765e to your computer and use it in GitHub Desktop.
{% macro generateList(input_list)%}
<ul>
{% for i in input_list %}
<li>{{i}}</li>
{% endfor %}
</ul>
{% endmacro %}
{{generateList(users)}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment