RiFi2k / format-html-in-php

Basically this vscode extension uses all your standard configurations for html formatting, and your standard configurations for format on save, etc. It more or less works exactly how vscode should already work as it pertains to HTML in PHP files.
The Unlicense
33 stars 6 forks source link

<?php ?>tag #30

Closed mrhorse76 closed 5 years ago

mrhorse76 commented 5 years ago

Is it possible to open an <? php tag and ?> close tag in a new line. if I use 2 <? php tags as an include, it will not be formatted properly.

RiFi2k commented 5 years ago

Can you shoot me a before and after, for example the code looked like

Before

<?php
      <div></div>
?>

After

<?php
<div></div>
?>

You can also use this site here because this plugin uses its library - https://beautifier.io/

mrhorse76 commented 5 years ago

Hello,

many thanks for your response. in the attachment you have a before and after picture. the formatting for open <? php and close ?> tags are not displayed in a new line. this makes the source code hard to read for the programmer and does not look good.

Thank you so much and best regards

Dennis

Von: Reilly Lowery [mailto:notifications@github.com] Gesendet: Samstag, 24. August 2019 23:02 An: RiFi2k/format-html-in-php Cc: mrhorse76; Author Betreff: Re: [RiFi2k/format-html-in-php] <?php ?>tag (#30)

Can you shoot me a before and after, for example the code looked like

Before

<?php

?>

After

<?php

?>

You can also use this site here because this plugin uses its library - https://beautifier.io/

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/RiFi2k/format-html-in-php/issues/30?email_source=notifications&email_token=AMVOLHIKJMSQIM3NFDANGP3QGGOS7A5CNFSM4IFR77SKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD5CHI6Q#issuecomment-524579962 , or mute the thread https://github.com/notifications/unsubscribe-auth/AMVOLHP7SXYUHF4A742YKZ3QGGOS7ANCNFSM4IFR77SA . https://github.com/notifications/beacon/AMVOLHLAFVCW5NTARNRUHILQGGOS7A5CNFSM4IFR77SKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD5CHI6Q.gif

RiFi2k commented 5 years ago

Sorry maybe I wasn't being clear I was wondering if you could give me:

If you give me those 3 code blocks then I can go ahead and try to help you out.

mrhorse76 commented 5 years ago

Hello,

please excuse my bad English. I will try to make it understandable. It is about the following source code shown in bold: (formatted in https://beautifier.io/)

…….