metonym / svelte-highlight

Syntax Highlighting for Svelte using highlight.js
https://svhe.onrender.com
MIT License
262 stars 14 forks source link

Word wrap long strings? #243

Closed silverbucket closed 1 year ago

silverbucket commented 1 year ago

I am using Svelte Highlight to display some JSON, however some of the properties are very long strings, these go off the screen and I have tried a number of CSS rules on the parent div to wrap the words, with no luck. Is there a way to tell Highlight to wrap long strings?

metonym commented 1 year ago

The native pre element has a white-space: pre; rule to preserve the formatting of child text.

Try applying white-space: pre-wrap; on the pre element to override this behavior.

silverbucket commented 1 year ago

Forgot to follow up, this fix worked. Thanks!