We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Environment:
When I exported the graph locally by command
pluralith graph --local-only --show-changes --file-name Pluralith_Diagram_Diff
It exported a PDF file named Pluralith_Diagram.pdf by default without any error or warning.
Pluralith_Diagram.pdf
I have researched and understood the cause of this code
// Set defaults for export if exportArgs["title"] == "" { exportArgs["title"] = "Pluralith Diagram" //+ exportArgs["runId"].(string) exportArgs["file-name"] = "Pluralith_Diagram" //+ exportArgs["runId"].(string) }
https://github.com/Pluralith/pluralith-cli/blob/main/app/pkg/graph/PreGraph.go#L34-L38
If --title is not specified, it will override option --file-name
--title
--file-name
The text was updated successfully, but these errors were encountered:
Fix Pluralith#124: Can not specify exported file-name without specify…
4238f5b
… title
Successfully merging a pull request may close this issue.
Environment:
When I exported the graph locally by command
It exported a PDF file named
Pluralith_Diagram.pdf
by default without any error or warning.I have researched and understood the cause of this code
https://github.com/Pluralith/pluralith-cli/blob/main/app/pkg/graph/PreGraph.go#L34-L38
If
--title
is not specified, it will override option--file-name
The text was updated successfully, but these errors were encountered: