1. When using views it would be very handy for an image field to have a replacement pattern with the relative url to a image to do something like this:

<picture>
    <source srcset="{{ field_customer_logo__uri|replace({'.png': '-mobile.png'}) }}" media="(min-width: 960px)">
    <source srcset="{{ field_customer_logo__uri|replace({'.png': '-tablet.png'}) }}" media="(min-width: 768px)">
    <img src="{{ field_customer_logo__uri }}" alt="{{ field_customer_logo__alt }}">
</picture>

2. A bugfix to correct the line breaks in contact form mails.

Comments

VM’s picture

This should be discussed in an issue in the core issue queue. It's not likely to gain any traction in the forums.