forked from tforgione/md2pdf
Remove a useless ;
This commit is contained in:
parent
c4bf81cdb7
commit
764f48ec48
|
@ -82,7 +82,7 @@ pub fn markdown_to_latex(markdown: String) -> String {
|
|||
Event::Start(Tag::Image(_, path, title)) => {
|
||||
output.push_str("\\begin{figure}\n");
|
||||
output.push_str("\\centering\n");
|
||||
output.push_str("\\includegraphics[width=\\textwidth]{");;
|
||||
output.push_str("\\includegraphics[width=\\textwidth]{");
|
||||
output.push_str(&*path);
|
||||
output.push_str("}\n");
|
||||
output.push_str("\\caption{");
|
||||
|
|
Loading…
Reference in New Issue