@if(isset($report['results'][$name]))
@include('reports.partials.status')
{{ __('Text to HTML ratio') }}
@if($report['results'][$name]['passed'])
{{ __('The text to HTML ratio is :value%.', ['value' => $report['results'][$name]['value']]) }}
@else @foreach($report['results'][$name]['errors'] as $error => $details)
@if($error == 'too_small') {{ __('The text to HTML ratio is under :min%.', ['min' => $details['min']]) }}
{{ __('The text to HTML ratio is :value%.', ['value' => $report['results'][$name]['value']]) }}
@endif
@endforeach @endif
{{ __('The text to HTML ratio represents the percentage of actual text compared to the percentage of HTML code on the webpage.') }}
@endif