FEATURE REQUEST: Tags column (formatter) for dynamic block
- 主要語言
- Emacs Lisp
- 星號
- 1.6k
- 分支
- 120
- PR 合併指標
- 30 天內沒有已合併 PR
描述
This would be very simple and is an obviously missing feature.
It should be possible to filter the tags with regexp.
I fixed it for me with the following el-patch for (org-dblock-write:org-ql):
```
(el-patch-add
(cons 'tags (lambda (element &optional pattern)
(s-join " "
(--filter
(or (not pattern)
(s-matches? pattern it))
(org-element-property :tags element))))))
```
As stated in my other feature request, tags and property columns should be able to access inherited tags/properties. This information is currently not accessible via the element parameter of (org-dblock-write:org-ql).
貢獻指南
這個儲存庫沒有索引到貢獻指南
評估
這個 Issue 還沒有評估資料。