ahonn
ahonn
Thank you. The documentation is indeed a bit sparse, and I plan to update it a bit soon (including the plugin gif). Feel free to give feedback on any other...
Please enter the following query in logseq and see if it shows the tasks in the current page? ``` #+BEGIN_QUERY {:title "Find tasks" :query [:find (pull ?b [*]) :where [?b...
It looks like something went wrong. Try opening the console tab in devtools (F12), then click to open the plugin widget and see if there is an error message in...
`if (a == null || b == null) return a === b;` 的确应该是直接 return false. 这里 a === b 的返回值一定是 false,否则这行代码也就不会执行了。所以当 `a == null || b == null`为 true 的时候...
@Klaus1995 当然有,对象的属性引用自身 
@chenyulun updater 是内部更新的时候使用的。传入自定义的 updater 的话,基本上说明没有什么必要用 react 了...
`a == a - 1` 的话,想到一个跟 @justemit 的思路差不多的: ```js const a = { times: 0, valueOf() { if (this.times & 1) { return 0; } this.times += 1; return 1;...
这里可以考虑用 CSS Variables 来做
Duplicate issue, fixed
This is a known issue that I have to parse and modify the content of the block according to the schedule rules in order to achieve it. Currently, I don't...