Actions
Bug #5 | ISS-0005
opencsInfo #ISS-0012: Bugs
An arrow in the subject causes the diagrams to have nodes with empty titles.
Status:
New
Priority:
Normal
Assignee:
-
Start date:
04/13/2024
Due date:
% Done:
0%
Estimated time:
csWload:
csOldCode:
csID:
ISS-0005
csChapter:
002.005.
depGrahInReports:
Include if has relations
Files
Derive | Clone item |
Updated by Redmine Admin 7 months ago
Look at this:
For strings that should literally begin with '<' and end with '>', use the graphviz.nohtml() function to disable the special meaning of angled parenthesis and apply normal quoting/escaping:
d = graphviz.Digraph('diamond', format='svg')
d.node('diamond', label=graphviz.nohtml('<>'))
print(d.source)
digraph diamond {
diamond [label="<>"]
}
doctest_mark_exe() # skip this lined.render(directory='doctest-output').replace('\', '/')
'doctest-output/diamond.gv.svg'
Actions
Go to top