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
If spec is written in a file with newlines (for readability), relations are not rendered properly, e.g. the input file below:
This diff fixes it for me:
diff --git a/bin/suml b/bin/suml index 0a408c3..6fc62d6 100755 --- a/bin/suml +++ b/bin/suml @@ -51,10 +51,11 @@ if options.output_file: fout = open(options.output_file, 'wb')
if options.input_file:
[SomeClass| attribute1; memberclass1; ]
[OtherClass| attribute2; ]
[SomeClass]++-[OtherClass]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If spec is written in a file with newlines (for readability), relations are not rendered properly, e.g. the input file below:
This diff fixes it for me:
diff --git a/bin/suml b/bin/suml
index 0a408c3..6fc62d6 100755
--- a/bin/suml
+++ b/bin/suml
@@ -51,10 +51,11 @@ if options.output_file:
fout = open(options.output_file, 'wb')
if options.input_file:
elif len(args) == 0:
lines = sys.stdin.read()
else:
spec = args[0]
[SomeClass|
attribute1;
memberclass1;
]
[OtherClass|
attribute2;
]
[SomeClass]++-[OtherClass]
The text was updated successfully, but these errors were encountered: