默认情况下是否有办法展开折叠的文本?

The only way I know of would be through JavaScript, you could probably run an event that looks for a details tag and adds the attribute ‘open’ to it.

Something like this:

$('details').attr('open','')

Figuring out the right event to fire that on, is a different question.