Skip to content

Commit

Permalink
Remove double dots from citeproc output
Browse files Browse the repository at this point in the history
  • Loading branch information
pfoerster committed Nov 30, 2019
1 parent 9cd61eb commit b539f0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/citeproc/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pub fn render_citation(tree: &BibtexSyntaxTree, key: &str) -> Option<MarkupConte

let content = MarkupContent {
kind: MarkupKind::Markdown,
value: markdown,
value: markdown.replace("..", "."),
};
Some(content)
}
Expand Down

0 comments on commit b539f0b

Please sign in to comment.