scalameta / mdoc

Typechecked markdown documentation for Scala
https://scalameta.org/mdoc/
Apache License 2.0
394 stars 80 forks source link

bugfix: Calculate string value eagerly #870

Closed tgodzik closed 2 months ago

tgodzik commented 2 months ago

Previously, we would stringify everything at the end, which means any mutable collections etc would be printed wrongly.

Now, we caluclate string value eagerly.

Related to https://github.com/scalameta/metals/issues/6500