Add browser version information

Extracts and separately renders browser version information.

`IE 11` will be transformed to `IE` and `11`, the version is matched from the right side using a regex `[0-9]+$` and the browser name is matched from the left side using `^[a-zA-Z ]+`

Removed some code duplication.
This commit is contained in:
Rik Schennink 2017-11-24 08:32:18 +01:00 committed by GitHub
parent 230eda9026
commit 58160ca8c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 9 deletions

View File

@ -11,19 +11,16 @@
</th> </th>
{{ range $tested }} {{ range $tested }}
<td> <td>
{{ $browser := findRE "^[a-zA-Z ]+" . }}
{{ $browser := index $browser 0 }}
{{ $version := findRE "[0-9]+$" . }}
{{ $slug := replace $browser " " "-" | lower }}
<img src="{{ (printf "images/browser-%s" $slug) | absURL }}.svg" alt="">
<span><strong>{{ $browser }} {{ index $version 0 }}</strong></span>
{{ if in . "+" }} {{ if in . "+" }}
{{ $parts := split . "+" }} {{ $parts := split . "+" }}
{{ $browser := index $parts 0 }}
{{ $additional := index $parts 1 }} {{ $additional := index $parts 1 }}
{{ $slug := replace $browser " " "-" | lower }}
<img src="{{ (printf "images/browser-%s" $slug) | absURL }}.svg" alt="">
<span><strong>{{ $browser }}</strong></span>
<span class="additional">with <strong>{{ $additional }}</strong></span> <span class="additional">with <strong>{{ $additional }}</strong></span>
{{ else }}
{{ $browser := . }}
{{ $slug := replace $browser " " "-" | lower }}
<img src="{{ (printf "images/browser-%s" $slug) | absURL }}.svg" alt="">
<span><strong>{{ $browser }}</strong></span>
{{ end }} {{ end }}
</td> </td>
{{ end }} {{ end }}