<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Snippet to clear out textareas that may have stray whitespace from rendering.
 */
function cleanTextareas() {
    let textareas = document.getElementsByTagName('textarea');
    if (textareas.length &gt; 0) {
        for (let i = 0; i &lt; textareas.length; i++) {
            textareas[i].value = textareas[i].value.trim();
        }
    }
}

(function (window, document) {

    window.onload = init;

    function init() {
        cleanTextareas();
    }

})(window, document);</pre></body></html>