#37228 new New feature

Make multiline tags possible

Reported by: Jonathan Sundqvist Owned by:
Component: Uncategorized Version: 6.0
Severity: Normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

The ticket #8652 closed this as won't fix. This was 18 years ago, and I think it's worthwhile to re-visit this issue.

This is an example of a line that is starting to become unwieldy.

{% include "stories/partials/story_detail.html#detail" with variant="detail" var="a" var_2="b" var_3="c" %}

It would be much better if you could break this up into the following.

{% include "stories/partials/story_detail.html#detail" 
     with variant="detail" var="a" var_2="b" var_3="c" %}

or

{% include "stories/partials/story_detail.html#detail" 
    with variant="detail" 
    var="a" 
    var_2="b" 
    var_3="c" 
%}

That would make these kind of long tags much easier to read.

Change History (0)

Note: See TracTickets for help on using tickets.
Back to Top