<div dir="ltr">I would say 1) that's not presentational,  2) it can actively interfere with parameters passed to wp_enqueue_style(), even for stylesheets not enqueued by the Theme, and 3) if the Theme needs to modify one of those parameters (such as $media) for its own stylesheets, it can do so via wp_enqueue_style().</div>
<div class="gmail_extra"><br><br><div class="gmail_quote">On Mon, Feb 24, 2014 at 11:06 AM, Ola Łączek <span dir="ltr"><<a href="mailto:ola@bodera.com" target="_blank">ola@bodera.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div dir="ltr">Hello!<div><br></div><div>Thank you for your answers. Here's what's being done to <link> tag:</div><div><div><br></div><div>/**</div><div class=""><div> * Clean up output of stylesheet <link> tags</div>

</div><div> */</div><div>function sme_clean_style($input) {</div><div>    preg_match_all("!<link rel='stylesheet'\s?(id='[^']+')?\s+href='(.*)' type='text/css' media='(.*)' />!", $input, $matches);</div>

<div>    // Only display media if it is meaningful</div><div>    $media = $matches[3][0] !== '' && $matches[3][0] !== 'all' ? ' media="' . $matches[3][0] . '"' : '';</div>

<div>    // Add a 4 spaces indent before <link...</div><div>    return '    <link rel="stylesheet" href="' . $matches[2][0] . '"' . $media . '>' . "\n";</div>

<div>}</div><div>add_filter('style_loader_tag', 'sme_clean_style');</div></div><div><br></div><div><br></div><div>Best regards,</div><div>Ola Laczek</div></div>
<br>_______________________________________________<br>
theme-reviewers mailing list<br>
<a href="mailto:theme-reviewers@lists.wordpress.org">theme-reviewers@lists.wordpress.org</a><br>
<a href="http://lists.wordpress.org/mailman/listinfo/theme-reviewers" target="_blank">http://lists.wordpress.org/mailman/listinfo/theme-reviewers</a><br>
<br></blockquote></div><br></div>