Edgewall Software

Changes between Initial Version and Version 1 of Ticket #614


Ignore:
Timestamp:
Jan 29, 2019, 3:59:32 AM (5 years ago)
Author:
rjollos
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #614 – Description

    initial v1  
    1 I can use ${Markup(data)} to avoid escaping in most cases but when I try to use it in a attribute it is ignored:
     1I can use `${Markup(data)}` to avoid escaping in most cases but when I try to use it in a attribute it is ignored:
     2
     3{{{#!genshi
    24<div title="${Markup(data)}">${Markup(data)}</div>
    3 will produce something like this if data = "Text&nbsp;Text"
     5}}}
     6
     7will produce something like this if `data = "Text&nbsp;Text"`
     8{{{#!genshi
    49<div title="Text&amp;nbsp;Text">Text&nbsp;Text</div>
     10}}}
    511
    6 My main use case or this is to include &nbsp; in the tooltips.
     12My main use case or this is to include `&nbsp;` in the tooltips.