Skip to content
This repository was archived by the owner on Nov 27, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/services/handle-power-tag.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { handleDynamicVariables } from './handle-dynamic-variables'
export const handlePowerTag = async (uuid: string) => {
const blk = await logseq.Editor.getBlock(uuid)
if (!blk) return
const tagMatch = /#(?:\[\[(.*?)\]\]|(\w+))/.exec(blk.content)
const tagMatch = /#(?:\[\[(.*?)\]\]|(.+))/.exec(blk.content)
if (!tagMatch) return

// Check whether tag is a PowerTag
Expand Down