pushqrdx / vscode-inline-html

🎨 Adding Syntax Highlighting, Emmet, IntelliSense support for ES6 Template Strings in Visual Studio Code.
https://marketplace.visualstudio.com/items?itemName=pushqrdx.inline-html
GNU General Public License v3.0
54 stars 15 forks source link

Support for PHP files #6

Open tiansin opened 5 years ago

tiansin commented 5 years ago

For example:

heredoc:

function outputhtml()
{
echo <<<html
   <html>
   <head><title>主页</title></head>
   <body>主页内容</body>
   </html>
html;
}

function outputhtml()
{
echo /*html*/'
   <html>
   <head><title>主页</title></head>
   <body>主页内容</body>
   </html>
   ';
}
pushqrdx commented 5 years ago

3 I'll look into both of these asap, Thanks for the the request!