We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a83107f commit 7619e3aCopy full SHA for 7619e3a
deps/outliner/src/logseq/outliner/core.cljs
@@ -272,7 +272,10 @@
272
block (assoc block :block/tags tags')
273
disallowed-tag? (fn [tag] (inline-tag-disallowed? db tag))
274
disallowed-tags (filter disallowed-tag? tags')]
275
- (if (seq disallowed-tags)
+ (if (and (seq disallowed-tags)
276
+ (some (fn [tag]
277
+ (string/includes? (:block/title block) (str "#" (page-ref/->page-ref (:block/uuid tag)))))
278
+ disallowed-tags))
279
(-> block
280
(update :block/tags
281
(fn [tags]
0 commit comments