-
```
1. Parse the following with HamlParser (no options used) :
%select
%option{:value => '0'} Transport
%option{:value => '1'} Manufacturing
%option{:value => '2'} Logistics
%option{:…
-
```
1. Parse the following with HamlParser (no options used) :
%select
%option{:value => '0'} Transport
%option{:value => '1'} Manufacturing
%option{:value => '2'} Logistics
%option{:…
-
I have been trying to get better syntax highlighting for a bunch of web related languages I use (Mostly Ruby and related, such as ERB and other templates, and thus also HTML, CSS, SCSS, Javascript, et…
-
They can only contain literals. Also:
- Attribute lists cannot span multiple lines
- Have no built-in shortcuts like `:selected => false` instead of `:selected => "selected"`.
-
Out of result of the following Twitter conversation, I would like to make a request to add "partial" functionality to the "Haml Contrib" project…
> @bmz wrote: @compay is there a way to do partials w…
-
```
What steps will reproduce the problem?
%textarea or %pre with content while not in ugly mode
What is the expected output? What do you see instead?
I expect no additional whitespace to be generat…
-
I'm using Laravel 5.7 clean installation, and while trying to add this package with composer, add it to the app.php as Service Provider. The template is giving: "a nesting within interpolated string i…
-
In Haml a double equals interpolates a string the same way that a single equals interpolates ruby code, although the doc itself is quite quiet about that. So this
``` haml
- @student = 'derDoc'
%p= "…
-
```
What steps will reproduce the problem?
%textarea or %pre with content while not in ugly mode
What is the expected output? What do you see instead?
I expect no additional whitespace to be generat…
-
When you registen new Blade directive in AppServiceProvier, for example @run
```
Blade::directive('run', function($expression) {
return "";
});
```
It's not accesable by `HamlBladeCompiler` class,…