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
When using the default scheme.j2, I get a syntax error as the plantuml preprocessor runs, whenever I have any references present in my dbml spec.
After a little debugging, and reading the plantuml docs, it looks like it should use a double colon :: rather than a single on the references.
::
https://github.com/foliant-docs/foliantcontrib.dbmldoc/blob/master/foliant/preprocessors/dbmldoc/template/scheme.j2#L22
Changing this to:
{{ table.name|indent }} --> {{ ref.table2.name }} :: {% for c in ref.col2 %}
removes the error and my uml diagram renders as I expect.
This also fails when following the instructions in the foliant docs: https://foliant-docs.github.io/docs/tutorials/db/dbml/
The text was updated successfully, but these errors were encountered:
+1
Sorry, something went wrong.
No branches or pull requests
When using the default scheme.j2, I get a syntax error as the plantuml preprocessor runs, whenever I have any references present in my dbml spec.
After a little debugging, and reading the plantuml docs, it looks like it should use a double colon
::
rather than a single on the references.https://github.com/foliant-docs/foliantcontrib.dbmldoc/blob/master/foliant/preprocessors/dbmldoc/template/scheme.j2#L22
Changing this to:
removes the error and my uml diagram renders as I expect.
This also fails when following the instructions in the foliant docs: https://foliant-docs.github.io/docs/tutorials/db/dbml/
The text was updated successfully, but these errors were encountered: