Skip to content

Commit

Permalink
Merge branch 'main' into scorpion
Browse files Browse the repository at this point in the history
  • Loading branch information
jendrikseipp committed Jan 10, 2024
2 parents a829dcf + 329c5fe commit d09a8d5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/search/utils/markup.cc
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ string format_conference_reference(
ostringstream ss;
ss << "\n\n"
<< format_authors(authors) << ".<<BR>>\n"
<< " [" << t2t_escape(title) << " " << url << "].<<BR>>\n"
<< " In //" << t2t_escape(conference) << "//";
<< "[" << t2t_escape(title) << " " << url << "].<<BR>>\n"
<< "In //" << t2t_escape(conference) << "//";
if (!pages.empty())
ss << ", pp. " << t2t_escape(pages);
ss << ". ";
Expand All @@ -51,8 +51,8 @@ string format_journal_reference(
ostringstream ss;
ss << "\n\n"
<< format_authors(authors) << ".<<BR>>\n"
<< " [" << t2t_escape(title) << " " << url << "].<<BR>>\n"
<< " //" << t2t_escape(journal) << "// "
<< "[" << t2t_escape(title) << " " << url << "].<<BR>>\n"
<< "//" << t2t_escape(journal) << "// "
<< t2t_escape(volume) << ":" << t2t_escape(pages) << ". "
<< t2t_escape(year) << ".\n\n\n";
return ss.str();
Expand Down

0 comments on commit d09a8d5

Please sign in to comment.