How to format the audio tag in Ruby Slim?

audio, ruby, slim-lang

Solution

You can get the empty attributes with boolean attributes in Slim. I guess your HTML snippet translates to something like this:

audio controls=true autoplay=true loop=true muted=true
  source src="horse.ogg" type="audio/ogg"
  source src="horse.mp3" type="audio/mpeg"

  | Your browser does not support the audio tag.

or shorter

audio(controls autoplay loop muted)
  …

Problem

This is the HTML audio tag: ``` <audio controls autoplay loop muted> <source src="horse.ogg" type="audio/ogg"> <source src="horse.mp3" type="audio/mpeg"> Your browser does not support the audio tag. </audio> ``` How is this written in Slim code, including the control, auto play and loop attributes?

Original source