htl-spec icon indicating copy to clipboard operation
htl-spec copied to clipboard

HTML Template Language Specification

Results 16 htl-spec issues
Sort by recently updated
recently updated
newest added

### Expected Behaviour For data-sly-list and data-sly-repeat there should be a prepared object reference to the previous and next item in the list. It is not right to have a...

The restriction to only allow logical and comparative operators in HTL means modulus operations can't be performed. ``` ... ``` As well as using a constant ("5" in the example...

original message in https://lists.apache.org/thread.html/rbf853d99ccdb7e4259231abfcfc11e9c4469ced6095e859027ba4ed2%40%3Cdev.sling.apache.org%3E certain components require that we overcome beautiful concept of separation of concern between CSS & HTML as variability of the potential styling is too high. This...

It would be nice to be able to leave trailing commas in a `optionaValues` literal format. I'm not sure the best way to change the grammar, but a possible idea...

As a new user of HTL I am trying to understand where my files need to be placed and how they can be accessed with an include directive. While the...

clarification

In Angular and a multitude of other templating languages, it is possible to declare slots where templates can hold injected html, this is known as content projection, it is a...

It states: > `scheme` - allows adding or removing the scheme part for a URI > > ``` > ${'//example.com/path/page.html' @ scheme='http'} > > > ${'http://example.com/path/page.html' @ scheme='https'} > >...

clarification

Would be nice if there is possible to call Sling model method which takes parameters. Example: Sling model: ` public String getMethod(String param1, String param2){ return param1 + param2; }...

The `data-sly-call` specification states that attribute value is optional. I think it is wrong, because calling nothing doesn't make sense. I checked Sightly and it throws: ``` org.apache.sling.scripting.sightly.java.compiler.SightlyJavaCompilerException: data-sly-call: String...

According to https://html.spec.whatwg.org/multipage/introduction.html#intro-early-example HTML attribute values must be either 1. Quoted in double quotes 2. Quoted in single quotes 2. Not quoted. The HTL spec at https://github.com/adobe/htl-spec/blob/master/SPECIFICATION.md#21-syntax should explicitly state...