Only the first class 'word_split' applies. What should I do if I want to break all the other classes?
<script>
var textWrapper = document.querySelector('.word_split');
textWrapper.innerHTML = textWrapper.textContent.replace(/\S/g, "<span class='letter'>$&</span>");
</script>