How to turn off wrap text in mobile and make it scrollable horizontally

hey there guys.

Is there a way to make text unwarp lines?

On mobile creating lists with sub lists in long lines make everything gets messed up in editing mod and tab-spacing also gets weird.

so is there a way to turn off wrap text in mobile and make it scrollable horizontally?

thanks

This will keep each list-item on a single line:

    .HyperMD-list-line.cm-line {
        white-space: nowrap;
    }

Is that what you meant?

Yes, thank you,
How can i do this view mode too?

What do you want to do? (and what view mode?)

I mean reading view

is it possible to make just the list portion scroll horizontally?
maybe put it in container…

Sure, for reading mode, that would be:

li {white-space: nowrap;}

^ that will keep each list-item on a single line.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.