The input string as seen in the source
Extracts the section name from the tag.
In case the string is quoted, quotes are removed (to support usage à la blade).
For simplicity, this just looks if there's a comma and uses everything before. It is pretty intuitive when the at-rule is used without quotes as recommended in the doc but counter-intuitively fails to parse @section('aa,bb');
The input string as seen in the source
Generated using TypeDoc
Extracts the section data from the tag.
Users can use the shorthand
@section(name, data)
Which stands for
@section(name)@(data)@endsection