Files
uni-web-site/old/lectures/lec4/part2/task6.pug
2026-02-26 21:55:48 +10:00

13 lines
290 B
Plaintext

mixin createList(listType, items, tag)
- var dispListType = "ul"
- if (listType == "ol")
- dispListType = "ol"
#{dispListType}.list
each item in items
li
#{tag} #{item}
// Вызов миксина
+createList('ul', ['Python', 'JavaScript', 'Java'], 'strong')