1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-01 09:43:16 +00:00
TiddlyWiki5/core/wiki/macros/list.tid

17 lines
307 B
Plaintext
Raw Normal View History

2014-09-11 14:52:47 +00:00
title: $:/core/macros/list
tags: $:/tags/Macro
\define list-links(filter,type:"ul",subtype:"li",class:"")
<$type$ class="$class$">
2014-09-11 14:52:47 +00:00
<$list filter="$filter$">
<$subtype$>
2014-09-11 14:52:47 +00:00
<$link to={{!!title}}>
<$transclude field="caption">
2014-09-11 14:52:47 +00:00
<$view field="title"/>
</$transclude>
2014-09-11 14:52:47 +00:00
</$link>
</$subtype$>
2014-09-11 14:52:47 +00:00
</$list>
</$type$>
2014-09-11 14:52:47 +00:00
\end