-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
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
Add support for an !include file (optional) that would have settings #109
Comments
@fuhrmanator this tool is proving popular. Problem is I don't use plantuml that often and I am not too familiar with it. Can you provide sample input, output, and how you would provide the option? |
Here's an example (the tplant tool would have to generate the @startuml
!include customizations.puml
...
@enduml A hide members
skinparam style strictuml So, the command could be |
Basically, it's an optional hook to allow custom plantuml commands (any) from a specified file to be inserted after the line of |
Makes sense to me. I may try to get PR ready for this but have limited time over next few weeks. |
Nothing urgent! I hacked a solution on my CI, if you're curious: |
I want to use this in a CI on Github to create PlantUML documentation of my API. But I don't want to see all the methods or attributes in the diagrams.
I'd like to insert a line
hide members
. But maybe I also want tohide circle
or other customizations. I don't want to hack something withsed
(but I will probably end up doing that).It would be cool if tplant had an option
-config <includefile>
that would include the file just after the@startuml
that is generated.The text was updated successfully, but these errors were encountered: