Changes between Initial Version and Version 1 of Ticket #8384, comment 58


Ignore:
Timestamp:
2020-01-22T20:54:08+01:00 (6 years ago)
Author:
simon04

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #8384, comment 58

    initial v1  
    11Paste tags fails when a value contains equal sign and another value contains a space, for example:
    22
     3{{{
    34name=Main street
    45url=http://foo.bar/?id=1
     6}}}
    57
    68Result after pasting text above (stable version #8969):
    79
     10{{{
    811name=Main
    912street=url=http://foo.bar/?id=1
     13}}}
    1014
    1115Workaround until fix: quoting the values. It's enough to quote the value with equal sign:
    1216
     17{{{
    1318name=Main street
    1419url="http://foo.bar/?id=1"
     20}}}