引用された internal links の aria-expanded をデフォルト true にする方法?

より良い解決策があるかもしれませんし、jQueryの使用は避けるべきですが、これで動作するはずです:

<script>
    $(document).ready(function(){ 
        jQuery(function(){
            jQuery('.quote-toggle').click();
        });
    }) 
</script>