Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ protected AnnotatedString removeMarkup(AnnotatedString as_out)
// Replace verbatim by dummy placeholder
as_out = as_out.replaceAll("\\\\verb\\*?(\\S).*?\\1", "[0]");
// Replace references and URLs by dummy placeholder
as_out = as_out.replaceAll("\\\\(ref|url|eqref|cref|Cref|vref|Vref|nameref|vpageref|pageref|autoref)\\{.*?\\}", "X");
as_out = as_out.replaceAll("\\\\(ref|url|eqref|cref|Cref|vref|Vref|nameref|vpageref|pageref|autoref|gls)\\{.*?\\}", "X");
// Delete \href command and its url part
as_out = as_out.replaceAll("\\\\href\\{.*?\\}", "");
// Titles
Expand Down