Skip to content

Commit efe7888

Browse files
author
Stefan Auditor
authored
Update README.md
Removed escapes
1 parent 57968a7 commit efe7888

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ placing a link of the following kind in the markup:
1717
<?php
1818
$file = "/path/to/filename.php";
1919
$line = 35;
20-
print "<a href=\"phpstorm://open?url=file://$file&line=$line\">Open with PhpStorm</a>";
20+
print "<a href='phpstorm://open?url=file://$file&line=$line'>Open with PhpStorm</a>";
2121
// Alternate Syntax to match PhpStorm 8 for the Macintosh
22-
print "<a href=\"phpstorm://open?file=$file&line=$line\">Open with PhpStorm</a>";
22+
print "<a href='phpstorm://open?file=$file&line=$line'>Open with PhpStorm</a>";
2323
?>
2424

2525
## Command-line usage

0 commit comments

Comments
 (0)