|
15/02/2020 - Sat February 15 |
Title of the Tiddler |
Text of the Tiddler |
What I'd like to be able to do is cut the text of the tiddler displayed in the list after a certain amount of characters. In case an item in the list is really long, it would look like this:
I googled around for quite a while, but I was probably using the wrong keywords. Is there any way I can easily achieve this? The code for the list that I have now is: Thanks in advance! |
<table class="tableFormatter">
<$list filter="[all[shadows+tiddlers]!prefix[$:/]tag[HelloThere]] +[sort[created]]">
<tr>
<td><$view field="created" format="date" template="DD/0MM/YYYY - ddd MMM DD"/></td>
<td valign="top"><$link to=<<currentTiddler>>><$view field='title'/></$link></td>
<td><$text text={{{ [<currentTiddler>get[text]split[]limit[30]join[]] }}} /></td>
</tr>
</$list>
</table>