summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2023-06-15 07:37:37 +0300
committerLars Wirzenius <liw@liw.fi>2023-06-15 07:37:37 +0300
commit9f2198d7c6d323b04d2d6a2ee6bf1cc421a91de5 (patch)
treef7c42662f31c60f6ccc737fa44498b64dd5608f3 /src
parent717a944b7f13c455df39460fdfae962f31db9f21 (diff)
downloadsubplot-9f2198d7c6d323b04d2d6a2ee6bf1cc421a91de5.tar.gz
chore: drop unnecessary fixme
If we ever need a class other than .pikchr, the comment won't help us. Sponsored-by: author
Diffstat (limited to 'src')
-rw-r--r--src/md.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/md.rs b/src/md.rs
index c584adf..b895528 100644
--- a/src/md.rs
+++ b/src/md.rs
@@ -377,7 +377,6 @@ mod typeset {
fn typeset_pikchr(e: &Element) -> Result<Element, SubplotError> {
let markup = e.content();
- // FIXME: is there ever a need to use classes other than .pikchr?
let svg = PikchrMarkup::new(&markup, None).as_svg()?;
Ok(svg_to_element(svg))
}