Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@sakura-crowd
Last active August 29, 2015 14:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sakura-crowd/a87fea9c3215605b0c4a to your computer and use it in GitHub Desktop.
Save sakura-crowd/a87fea9c3215605b0c4a to your computer and use it in GitHub Desktop.
TiddlyWiki5 の TODO のアレンジ
!!対応中の TODO
<$list filter="[!has[draft.of]tag[task]!tag[done]!tag[pending]sort[created]]"> <$checkbox tag="done"></$checkbox><$checkbox tag="pending"></$checkbox><$link to={{!!title}}><$view field="title"/> (<$view field="created" format="relativedate"/>)</$link><br> </$list>
!!保留中の TODO
<$list filter="[!has[draft.of]tag[task]!tag[done]tag[pending]sort[created]]"> <$checkbox tag="done"/><$checkbox tag="pending"/> <$link to={{!!title}}><$view field="title"/> (<$view field="created" format="relativedate"/>)</$link><br> </$list>
!!行った TODO
<$list filter="[!has[draft.of]tag[task]tag[done]sort[created]]"> <$checkbox tag="done"/><$checkbox tag="pending"/> <$link to={{!!title}}><$view field="title"/> (<$view field="created" format="relativedate"/>)</$link><br> </$list>
---
以上のコードは
TiddlyWiki5のカスタマイズ その1: YATTSUKE BLOG : http://hennohito.cocolog-nifty.com/blog/2013/11/tiddlywiki5-b6d.html
を参考にしています。
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment