On Tue, Sep 3, 2013 at 11:02 AM, Vladislav Stevanovic <[email protected]> wrote: > String: "Reporting Bugs & Issues" > > File:readlicense_oo/docs/readme.po > Locations:readme.xrm#reportbugs.reportbugs.readmeitem.text > > What represent " &" from string? is this variable? > --
It should be & (the semicolon at the end is important) Since HTML markup uses characters like < > " ' & for special things we need to use a different way to express a literal use of these symbols in HTML. So if we want to say "S&P500" in an HTML header it would be illegal to say: <h1>S&P500</h1> Instead we must say: <h1>S&P500</h1> The other commons one you might see are: " for a flat quotation mark " < for a less than sign < > for a greater than sign > ' for an apostrophe ' Regards, -Rob > rr, > Wlada --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
