GithubHelp home page GithubHelp logo

Comments (5)

issue-label-bot avatar issue-label-bot commented on July 20, 2024 1

Issue-Label Bot is automatically applying the label bug to this issue, with a confidence of 0.68. Please mark this comment with 👍 or 👎 to give our bot feedback!

Links: app homepage, dashboard and code for this bot.

from vscode-blade-formatter.

shufo avatar shufo commented on July 20, 2024

@RyanNutt
Could you provide example template that occurs the problem?
I would like to try reproducing.

from vscode-blade-formatter.

RyanNutt avatar RyanNutt commented on July 20, 2024

Sure...

I didn't catch it before, but both files that I tried this on had a PHP code block on the top. One, like this, with comments. The other had a bit of code that sets up variables. If I take out the PHP it appears to format correctly.

Before

<?php
/* Some comments on this template
 */
?>
<div class="font-ext-links">
    <a class="btn btn-cta" href="{{ url('download/' . $font->slug) }}" title="Download {{ $font->title }}">
        <i class="fa fa-fw fa-download"></i>
        Download
    </a>

</div>

After

{{ url('download/' . $font->slug) }}" title="Download {{ $font->title }}">
<i class="fa fa-fw fa-download"></i>
Download
</a>

</div>

from vscode-blade-formatter.

shufo avatar shufo commented on July 20, 2024

@RyanNutt
Thanks for sharing!
Also reproduced in my environment.

I'll try figure out what causes this behaviour.

Current workaround is to comment by blade syntax or remove php code block section will generate constant results.

{{-- Some comments on this template --}}
<div class="font-ext-links">
    <a class="btn btn-cta" href="{{ url('download/' . $font->slug) }}" title="Download {{ $font->title }}">
        <i class="fa fa-fw fa-download"></i>
        Download
    </a>

</div>

or

<div class="font-ext-links">
    <a class="btn btn-cta" href="{{ url('download/' . $font->slug) }}" title="Download {{ $font->title }}">
        <i class="fa fa-fw fa-download"></i>
        Download
    </a>

</div>

from vscode-blade-formatter.

shufo avatar shufo commented on July 20, 2024

Just published 0.3.1 with this bug fix.

from vscode-blade-formatter.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.