Skip to content

Commit 084534e

Browse files
gitcoder89431claude
andcommitted
Fix: Remove quotes from YAML tags for Obsidian compatibility
- Tags now generate as [tag1, tag2] instead of ["tag1", "tag2"] - Fixes Obsidian tag linking and recognition - Better knowledge base integration 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 6fab80e commit 084534e

File tree

1 file changed

+1
-1
lines changed
  • crates/agentic-tui/src/ui

1 file changed

+1
-1
lines changed

crates/agentic-tui/src/ui/app.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1361,7 +1361,7 @@ impl App {
13611361
chrono::Utc::now().format("%Y-%m-%d %H:%M:%S UTC"),
13621362
self.original_user_query.replace("\"", "\\\""),
13631363
clean_proposal.replace("\"", "\\\""),
1364-
note.header_tags.iter().map(|tag| format!("\"{}\"", tag)).collect::<Vec<_>>().join(", "),
1364+
note.header_tags.join(", "),
13651365
local_model,
13661366
local_prompt_tokens,
13671367
local_completion_tokens,

0 commit comments

Comments
 (0)