[scrobbles] Move tags out of org title and into page

This commit is contained in:
2026-04-02 11:55:29 -04:00
parent b6af201ba3
commit 29e179adad
5 changed files with 127 additions and 5 deletions

View File

@ -55,7 +55,7 @@ class TaskLogData(BaseLogData):
timestamp, note_text = next(iter(note.items()))
# Flatten newlines and clean whitespace
note_text = " ".join(note_text.strip().split())
lines.append(f"{timestamp}: {note_text} [{labels_str}]")
lines.append(f"{timestamp}: {note_text}")
if isinstance(note, list):
lines += note
if isinstance(note, str):