We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7f36ec commit 9b6b378Copy full SHA for 9b6b378
1 file changed
src/backend/utils.rs
@@ -19,7 +19,7 @@ pub(crate) fn create_span(document: &Document, cell: &Cell) -> Result<Element, E
19
if let Some(url) = cell.hyperlink() {
20
let anchor = document.create_element("a")?;
21
anchor.set_attribute("href", url)?;
22
- anchor.set_attribute("style", "text-decoration: none; color: inherit;")?;
+ anchor.set_attribute("style", "text-decoration: none; color: inherit")?;
23
anchor.set_inner_html(cell.symbol());
24
span.append_child(&anchor)?;
25
} else {
0 commit comments