我喜欢在Atom中自定义JS-Beautify,以更好地格式化刀片文件。
我们的手动样式如下:
{{--
Template Name: Full Width Template
--}}
<!-- template-fullwidth -->
@extends('layouts.app')
@section('content')
@while(have_posts())
@php the_post() @endphp
@include('sections.content-page')
@endwhile
@endsection
JS-Beautify给了我们这个
{{-- Template Name: Full Width Template
--}}
<!-- template-fullwidth -->
@extends('layouts.app')
@section('content')
@while(have_posts())
@php the_post()
@endphp
@include('sections.content-page')
@endwhile
@endsection
我尝试配置.jsbeautifyrc文件,但是没有运气。
我想:
否则,所有这些都不具备某种可读性强,格式正确的代码,而不仅仅是一堆指令。
可以做到吗?