1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-05-31 15:40:48 +00:00

Merge pull request #1237 from Geronymos/latex-file-extension

FileFormat changed to correct LaTeX file extension
This commit is contained in:
PlantUML 2023-01-05 12:06:34 +01:00 committed by GitHub
commit 0ed5f14c32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -109,8 +109,8 @@ public enum FileFormat {
if (this == MJPEG) if (this == MJPEG)
return ".avi"; return ".avi";
if (this == LATEX_NO_PREAMBLE) if (this == LATEX || this == LATEX_NO_PREAMBLE)
return ".latex"; return ".tex";
if (this == ANIMATED_GIF) if (this == ANIMATED_GIF)
return ".gif"; return ".gif";