Hi :)
i notice that in this file in version 4.3.1
html-report\4.3.1\themes\default\views\partials.tmpl
the original:
{{define "messageDiv"}}
{{if .}}
<div class="message-container">
<i class="fa fa-minus-square" aria-hidden="true"></i>
<div class="messages">
{{range .}}<div class="step-message">{{. | encodeNewLine | parseMarkdown | sanitize}} </div>{{end}}
</div>
</div>
{{end}}
{{end}}
if i remove the sanitize flag
{{define "messageDiv"}}
{{if .}}
<div class="message-container">
<i class="fa fa-minus-square" aria-hidden="true"></i>
<div class="messages">
{{range .}}<div class="step-message">{{. | encodeNewLine | parseMarkdown}} </div>{{end}}
</div>
</div>
{{end}}
{{end}}
its formatting the json ok but in origin its take it to the left.
is there any flag that can be supported inside default.properties that can make it work without removing the sanitize flag?
Thanks
Hi :)
i notice that in this file in version 4.3.1
html-report\4.3.1\themes\default\views\partials.tmplthe original:
if i remove the sanitize flag
its formatting the json ok but in origin its take it to the left.
is there any flag that can be supported inside default.properties that can make it work without removing the sanitize flag?
Thanks