You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I pretty print my Doc using .style(Style.XTerm.Fg.colorCode(..) to show it in a terminal.
Now I want to render it to a file without styles.
How to property do that?
I tried pretty.style(Style.Empty).render(100) but this results in NPE. println(Style.Empty.start) outputs null for some weird reason.
Scala 3.3.0, paiges 0.4.2, OpenJDK 11.0.15.
Any ideas?
The text was updated successfully, but these errors were encountered:
I pretty print my Doc using
.style(Style.XTerm.Fg.colorCode(..)
to show it in a terminal.Now I want to render it to a file without styles.
How to property do that?
I tried
pretty.style(Style.Empty).render(100)
but this results in NPE.println(Style.Empty.start)
outputs null for some weird reason.Scala 3.3.0, paiges 0.4.2, OpenJDK 11.0.15.
Any ideas?
The text was updated successfully, but these errors were encountered: