File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -793,7 +793,8 @@ func (r *pdfReporter) createDisclaimer(parsedModel *types.Model) {
793
793
"as well as the chapter about the Threagile toolkit and method used is kept intact as part of the " +
794
794
"distributed report or referenced from the distributed parts." )
795
795
html := r .pdf .HTMLBasicNew ()
796
- html .Write (5 , disclaimer .String ())
796
+ uni := r .pdf .UnicodeTranslatorFromDescriptor ("" )
797
+ html .Write (5 , uni (disclaimer .String ()))
797
798
r .pdfColorBlack ()
798
799
}
799
800
@@ -2496,8 +2497,9 @@ func (r *pdfReporter) createTagListing(parsedModel *types.Model) {
2496
2497
html .Write (5 , "<br><br><br>" )
2497
2498
}
2498
2499
r .pdfColorBlack ()
2499
- html .Write (5 , "<b>" + tag + "</b><br>" )
2500
- html .Write (5 , description )
2500
+ uni := r .pdf .UnicodeTranslatorFromDescriptor ("" )
2501
+ html .Write (5 , "<b>" + uni (tag )+ "</b><br>" )
2502
+ html .Write (5 , uni (description ))
2501
2503
}
2502
2504
}
2503
2505
}
You can’t perform that action at this time.
0 commit comments