<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[有什么插件能写入tid每次保存的时间在tid文件自身上]]></title><description><![CDATA[<p dir="auto">有什么插件能保存tid每次保存的时间作为tid的field？</p>
]]></description><link>https://talk.tidgi.fun/topic/177/有什么插件能写入tid每次保存的时间在tid文件自身上</link><generator>RSS for Node</generator><lastBuildDate>Mon, 11 May 2026 09:43:48 GMT</lastBuildDate><atom:link href="https://talk.tidgi.fun/topic/177.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 16 May 2024 21:41:32 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to 有什么插件能写入tid每次保存的时间在tid文件自身上 on Sun, 19 May 2024 13:59:41 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dyp1121054136" aria-label="Profile: dyp1121054136">@<bdi>dyp1121054136</bdi></a> 是的，但是这样太冗余了。不如直接从git看日志</p>
]]></description><link>https://talk.tidgi.fun/post/1008</link><guid isPermaLink="true">https://talk.tidgi.fun/post/1008</guid><dc:creator><![CDATA[Hydrowood]]></dc:creator><pubDate>Sun, 19 May 2024 13:59:41 GMT</pubDate></item><item><title><![CDATA[Reply to 有什么插件能写入tid每次保存的时间在tid文件自身上 on Sun, 19 May 2024 10:08:11 GMT]]></title><description><![CDATA[<p dir="auto">理论上可以用 <a href="https://tw-cpl.netlify.app/#Plugin_202403254440536" target="_blank" rel="noopener noreferrer nofollow ugc">linonetwo/activity-log-tools</a> 来做，这个是记录太微游戏化插件的每次打卡时间的。方便可视化打卡时间表。</p>
<p dir="auto">不过目前只提供了 JS 接口。</p>
]]></description><link>https://talk.tidgi.fun/post/1006</link><guid isPermaLink="true">https://talk.tidgi.fun/post/1006</guid><dc:creator><![CDATA[linonetwo]]></dc:creator><pubDate>Sun, 19 May 2024 10:08:11 GMT</pubDate></item><item><title><![CDATA[Reply to 有什么插件能写入tid每次保存的时间在tid文件自身上 on Sat, 18 May 2024 13:45:19 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/hydrowood" aria-label="Profile: Hydrowood">@<bdi>Hydrowood</bdi></a> 突然意识到，你是想记录每个条目多个保存时间吗？那我好像没见过这种功能</p>
]]></description><link>https://talk.tidgi.fun/post/1003</link><guid isPermaLink="true">https://talk.tidgi.fun/post/1003</guid><dc:creator><![CDATA[dyp1121054136]]></dc:creator><pubDate>Sat, 18 May 2024 13:45:19 GMT</pubDate></item><item><title><![CDATA[Reply to 有什么插件能写入tid每次保存的时间在tid文件自身上 on Sat, 18 May 2024 13:43:46 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/hydrowood" aria-label="Profile: Hydrowood">@<bdi>Hydrowood</bdi></a> 可以写汇总的，你研究一下，比如：</p>
<pre><code>&lt;$list filter="[all[tiddlers]!is[system]!sort[modified]limit[5]]"&gt;
   &lt;$link/&gt; &lt;$view field="modified" format=relativedate/&gt;&lt;br&gt;
&lt;/$list&gt;
</code></pre>
]]></description><link>https://talk.tidgi.fun/post/1002</link><guid isPermaLink="true">https://talk.tidgi.fun/post/1002</guid><dc:creator><![CDATA[dyp1121054136]]></dc:creator><pubDate>Sat, 18 May 2024 13:43:46 GMT</pubDate></item><item><title><![CDATA[Reply to 有什么插件能写入tid每次保存的时间在tid文件自身上 on Sat, 18 May 2024 08:08:00 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dyp1121054136" aria-label="Profile: dyp1121054136">@<bdi>dyp1121054136</bdi></a> emm我想要的是每条保存时间都记录下来成一个列表。。发现用git自带的功能好像也行</p>
]]></description><link>https://talk.tidgi.fun/post/1000</link><guid isPermaLink="true">https://talk.tidgi.fun/post/1000</guid><dc:creator><![CDATA[Hydrowood]]></dc:creator><pubDate>Sat, 18 May 2024 08:08:00 GMT</pubDate></item><item><title><![CDATA[Reply to 有什么插件能写入tid每次保存的时间在tid文件自身上 on Sat, 18 May 2024 02:19:11 GMT]]></title><description><![CDATA[<p dir="auto">保存时间是一个隐藏字段，你可以写代码让它显示出来，如：</p>
<pre><code>&lt;$view field="modified"/&gt;
</code></pre>
<p dir="auto">相对编辑时间（多少秒/……前）：</p>
<pre><code>&lt;$view field="modified" format=relativedate/&gt;
</code></pre>
]]></description><link>https://talk.tidgi.fun/post/999</link><guid isPermaLink="true">https://talk.tidgi.fun/post/999</guid><dc:creator><![CDATA[dyp1121054136]]></dc:creator><pubDate>Sat, 18 May 2024 02:19:11 GMT</pubDate></item><item><title><![CDATA[Reply to 有什么插件能写入tid每次保存的时间在tid文件自身上 on Thu, 16 May 2024 23:15:03 GMT]]></title><description><![CDATA[<p dir="auto">默认是 modified 字段</p>
]]></description><link>https://talk.tidgi.fun/post/993</link><guid isPermaLink="true">https://talk.tidgi.fun/post/993</guid><dc:creator><![CDATA[oeyoews]]></dc:creator><pubDate>Thu, 16 May 2024 23:15:03 GMT</pubDate></item></channel></rss>