====== 重現 NodeTree ======
2013 年我曾經[[https://groups.google.com/g/tiddlywiki/c/MrueYHk2j7U?pli=1|發表]]了 TiddlyWiki 的 NodeTreePlugin/,[[https://github.com/tobibeer/TiddlyWikiPlugins/commits/master/mods/NodeTreePlugin.js|(目前在 GitHub 上還找得到!)]][[https://gjrobert.github.io/TiddlyWikiClassic-NodeTreePlugin/|(另外我也重新上傳了 TiddlyWiki 檔)]],/
===== ListTree =====
或是先移植 TiddlyWiki 5 的[[http://listtree.tiddlyspot.com/|這個 plugin]] 裡所含的 CSS?好像簡單得多。
==== 測試 ====
- 直接把[[http://listtree.tiddlyspot.com/#%24%3A%2Fplugins%2FTWaddle%2FListTree%2FStylesheet|這裡面的 stylesheet]] 複製到 DW userstyle 中,變數都先取代為 ''2px''、''silver''
- 測試:
++結果|
/* top-level: Lines if multiple top elements. No lines if single top element. */
.list-tree > li:last-of-type:before { display:none; }
.list-tree > li:first-of-type:before { border-top: {{!!list-tree-thickness}} solid {{!!list-tree-color}}; }
.list-tree > li:before {
border-left: {{!!list-tree-thickness}} solid {{!!list-tree-color}};
height: 100%;}
竟然沒出來
- 純 HTML(不用 wrap plugin) + 英文測試(拿去論壇發問用):
* Starry, starry night
* Paint your palette blue and gray
* Look out on a summer's day
* With eyes that know the darkness in my soul
* Shadows on the hills
* Sketch the trees and daffodils
* Catch the breeze and the winter chills
* In colors on the snowy linen land
* Now I understand
* What you tried to say to me
* And how you suffered for your sanity
* And how you tried to set them free
* They would not listen, they did not know how
* Perhaps they'll listen now
++結果:|
/* top-level: Lines if multiple top elements. No lines if single top element. */
.list-tree > ul > li:last-of-type:before { display:none; }
.list-tree > ul > li:first-of-type:before { border-top: 2px solid silver; }
.list-tree > ul > li:before {
border-left: 2px solid silver;
height: 100%;
}
.list-tree > ul > li:after { border-left: 0; }
[{{http://mimg.tk/uploads/big/8f235d6459b9d6285d012028bffd0708.png|結果擷圖}}]↑就正常了!自己解決了!++(原理)|@import "nodetree.css";
- ''plugin»wrap»noPrefix'' 裡加上 ''nodetree''
- 測試:
* 行嗎
* 來棵樹
* 吧
↑效果沒出來,就還是一般的 bullet list 樣
- userall.css 改為:
- @import "/dw/conf/nodetree.css";
→ ''403 Forbidden'' :(
- @import "/conf/nodetree.css";
→ ''404 Not found'' :(
- 放棄 ''@import'',改為直接把 CSS 內容放到 userall.css 中\\ → 效果出來了~[{{http://mimg.tk/uploads/big/2ce9401e4471afe3b9db9a675a321d40.png|擷圖}}]但最後一項的線條是錯的,原來還有一處是我忽略了,上面取代錯了,要改一下:
樹根
* 行嗎
* 來棵樹
* 吧
[{{http://mimg.tk/uploads/big/9f07886c9a621eac23798ea8151a04cd.png}}]↑樹根成功!(只是位置有點怪)
- 有樹根加子目
樹根
* 行嗎
* 子目
* 子目
* 來棵樹
* 子目
* 子目
* 子目
* 吧
* 子目
* 子目
會變這樣:[{{http://mimg.tk/uploads/big/5a74bb5ab613889b8063e4a25fa66c8e.png}}]
- 解決樹根位置:div.tp p {
margin: 0;
}
(原本 p 都有一個 10px 的上下 margin ← 拿掉)
- 之前的設計,下面有子目的話,還是都要弄 ''tp'',所以重弄一個:
樹根
* 行嗎
* 子目
* 子目
* 來棵樹
* 子目
* 子目
* 子目
* 吧
* 子目
* 子目
[{{http://mimg.tk/uploads/big/d6cd80491fa29ed0387495f578f30df1.png|目前成果}}]先這樣,改天再來繼續研究調整