summaryrefslogtreecommitdiff
path: root/support/texlab/crates/hover/src/citation.rs
diff options
context:
space:
mode:
Diffstat (limited to 'support/texlab/crates/hover/src/citation.rs')
-rw-r--r--support/texlab/crates/hover/src/citation.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/support/texlab/crates/hover/src/citation.rs b/support/texlab/crates/hover/src/citation.rs
index 372668997e..a39ea2e5f5 100644
--- a/support/texlab/crates/hover/src/citation.rs
+++ b/support/texlab/crates/hover/src/citation.rs
@@ -31,7 +31,7 @@ pub(super) fn find_hover<'a>(params: &HoverParams<'a>) -> Option<Hover<'a>> {
let data = document.data.as_bib()?;
let root = bibtex::Root::cast(data.root_node())?;
let entry = root.find_entry(name)?;
- citeproc::render(&entry)
+ citeproc::render(&entry, &data.semantics)
})?;
let data = HoverData::Citation(text);