Comment définir par défaut aria-expanded sur true pour les liens internes cités ?

There may be a better solution and we should try to avoid jquery, but this should work:

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