So, if I loop through and create a collection of li/a tags, I get as expected.. an array of these tags:
(1..5).to_a.map do content_tag(:li) do link_to(\"bo
Not positive, but I think that the html escaping happens at each "layer" (for lack of a better term; each iteration)― what I mean is at the inner block level (1..5)…. and then at the outer block level (content_tag(:ol) do ...