feat: update References section with formatted text, bold links, and dynamic CV links

This commit is contained in:
juanatsap
2025-11-07 18:40:02 +00:00
parent ab68078c48
commit c77ba32780
4 changed files with 58 additions and 37 deletions
+6 -3
View File
@@ -135,9 +135,12 @@ type Course struct {
}
type Reference struct {
Title string `json:"title"`
URL string `json:"url"`
Type string `json:"type"` // "recommendation", "portfolio", "profile", "cv", "presentation"
Title string `json:"title"`
URL string `json:"url"`
Type string `json:"type"` // "recommendation", "portfolio", "profile", "cv", "presentation"
TextBefore string `json:"textBefore,omitempty"` // Text before the link
LinkText string `json:"linkText,omitempty"` // Bold text inside the link
TextAfter string `json:"textAfter,omitempty"` // Text after the link
}
type Other struct {