如何筛选出近一周创建或更新的line/block?

补充:

关于第 1 点,相关推荐坛里考据文章 什么是块,具体如何记笔记有利于块链接

关于第 3 点,如果只是指 Text Transporter 的 Copy block embeds (CC) 命令,以下 quickadd 可作平替,具体控制条件略有不同。

image

基本配置参 QuickAdd JS & Templater JS 简介及相互修改“QuickAdd Capture 加载内部代码”。

js quickadd 代码,点击展开
const customRandom = (alphabet, size)=> {
  const mask = (2 << Math.log(alphabet.length-1) / Math.LN2)-1, step = -~(1.6 * mask * size / alphabet.length)
  , bytes = crypto.getRandomValues(new Uint8Array(step)); let id = '', j = step
  while (j--) { id += alphabet[bytes[j] & mask] || ''; if (id.length === size) return id }
}
, Editor = app.workspace.activeEditor.editor, line = Editor.getCursor().line, str = Editor.getLine(line)
, rgx = / \^[a-z0-9]{6,}$/gm, ids = Editor.getValue().match(rgx) || []
, newID = ` ^${customRandom('abcdefghijklmnopqrstuvwz0123456789', 6)}`
, set = Array.from(new Set(ids.sort().filter((x, i)=> x == ids[i+1]).map(x=> x)))
if (set[0]) { new Notice(`重复项${set}`); navigator.clipboard.writeText(set) }
if (!str.match(rgx) && !ids.includes(newID)) {
  ids.push(newID); Editor.replaceRange(newID, {line: line, ch: str.length})
}

因为不是每次生成块引用都需要立刻复制,为避免污染剪贴板,代码并不默认复制块引用。若希望默认复制,可自行在合适位置加上:

navigator.clipboard.writeText(`[[${app.workspace.getActiveFile().basename}#^${newID.slice(2)}]]`)
2 个赞