enhance: make symlink display more visible with arrow

- Changed from: '🔗 _quarto.yml is symlink: config/_quarto-html.yml'
- Changed to:   '🔗 _quarto.yml → config/_quarto-html.yml'
- Arrow symbol makes the symlink relationship immediately clear
- More visual and concise display of what points to what
This commit is contained in:
Vijay Janapa Reddi
2025-07-31 23:40:15 -04:00
parent 68c24cea60
commit 29323f4695

2
binder
View File

@@ -119,7 +119,7 @@ class BookBinder:
"""Show simple symlink status"""
if self.active_config.is_symlink():
target = self.active_config.readlink()
console.print(f"[dim]🔗 _quarto.yml is symlink: {target}[/dim]")
console.print(f"[dim]🔗 _quarto.yml {target}[/dim]")
else:
console.print(f"[dim]⚠️ _quarto.yml is NOT a symlink[/dim]")