On Sunday, September 20, 2020 at 7:21:39 PM UTC-7, imleg...@gmail.com wrote: > > <<list-links "[prefix[ExcelLogo]!tag[summary]]">> > which can list all the certain links. But I need all links show the > content. > Like "{{}}" effect. How to make it? >
The <<list-links>> macro is just a short cut for using the <$list> widget. However, as you've noticed, it only outputs links to tiddlers, not content. To produce more complex output, you need to use the <$list> widget instead. Something like this: <$list filter="[prefix[ExcelLogo]!tag[summary]]"> <$link />: <blockquote> <$transclude mode="block" /> </blockquote> </$list> 1) $list matches the specified filter, and automatically sets <<currentTiddler>> for use in the widget contents 2) $link creates a link using the <<currentTiddler>> title as the default. 3) The <blockquote>...</blockquote> is standard HTML, to show the tiddler content indented with a vertical line along the left. 4) $transclude shows the content of the <<currentTiddler>>. 5) Note use of mode="block" to ensure that tables, headings and lists are formatted properly (as compared to mode="inline") references: https://tiddlywiki.com/#LinkWidget https://tiddlywiki.com/#TranscludeWidget enjoy, -e -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/7dc2d1b3-4e19-40d8-aa3a-826055bd8e26o%40googlegroups.com.