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 320e67b commit f83d2d8Copy full SHA for f83d2d8
ingest.py
@@ -33,7 +33,7 @@
33
PAGE_LINK = re.compile(r"\[\[([^\]]+)\]\]") # [[Page]]
34
BLOCK_REF = re.compile(r"\(\(([a-zA-Z0-9_-]{6,})\)\)") # ((block-id))
35
TAG_HASH = re.compile(r"(?<!\w)#([A-Za-z0-9/_-]+)") # #tag
36
-TAG_PROP = re.compile(r"^tags::\s*(.+)$", re.MULTILINE) # tags:: a, b
+TAG_PROP = re.compile(r"^\s*tags::\s*(.+)$", re.MULTILINE) # tags:: a, b
37
38
def normalize_logseq_links(text: str) -> str:
39
"""Replace Logseq-specific link syntax with plain text.
0 commit comments