File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ export function Publications() {
6363 < span className = "px-2 py-1 rounded-md bg-primary/10 text-primary text-xs font-medium" >
6464 { pub . type }
6565 </ span >
66- < span className = "text-muted-foreground italic" > { pub . venue . replace ( / \\ / g , "" ) } </ span >
66+ < span className = "text-muted-foreground italic" > { pub . venue } </ span >
6767 </ div >
6868 { pub . doi && (
6969 < >
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ export function bibtexToPublication(entry: BibTeXEntry): Publication {
8080 authors = authors . replace ( / a n d / g, ", " )
8181
8282 // Extract venue
83- const venue = fields . booktitle || fields . journal || fields . publisher || "Unknown Venue"
83+ const venue = ( fields . booktitle || fields . journal || fields . publisher || "Unknown Venue" ) . replaceAll ( "\\" , "" )
8484
8585 // Extract DOI
8686 const doi = fields . doi
You can’t perform that action at this time.
0 commit comments