Skip to content

Commit

Permalink
Add PDF format for Plantuml Server (#545)
Browse files Browse the repository at this point in the history
PDF Support was added into Plantuml Server in this pull request: plantuml/plantuml-server#257
  • Loading branch information
pearj authored and qjebbs committed Mar 29, 2024
1 parent f7e7a04 commit b0141c5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/plantuml/renders/plantumlServer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ class PlantumlServer implements IRender {
return [
"png",
"svg",
"txt"
"txt",
"pdf"
];
}
/**
Expand Down Expand Up @@ -82,4 +83,4 @@ class PlantumlServer implements IRender {
return this.render(diagram, "map", savePath);
}
}
export const plantumlServer = new PlantumlServer();
export const plantumlServer = new PlantumlServer();

0 comments on commit b0141c5

Please sign in to comment.