A rust crate for generating Latex images of equations with an edition number to avoid cache flushing and timestamp attributes

Example: let mut name = "test".tostring(); let path = "../imgfolder/"; name = LatexImgGen::render(name,"y=\frac{1}{x}".tostring(),Some(path),true); // an image called test0.svg will be generated name = LatexImgGen::render(name,"y=\frac{2}{x}".tostring(),Some(path),true); // an image called test_1.svg will be generated

render(fullimgname: String, eqinput: String, filepath: Option<&str>, _delprev: bool)

filepath -> if you want the image added to your current directory, use None delprev -> true if you want the previous version to be deleted