How do I turn off line wrap?

Thanks, wasn’t quite what I needed but did point me in the right direction.

For anyone else who finds this post later. I used the following css snippit and it worked for me.

/* Line wrap*/                                                                           
.cm-line {                                                                      
    white-space: pre;                                                           
}                                                                               
                                                                                
/* code block only - scrollbar. Editing & Reading */                            
.HyperMD-codeblock, .markdown-preview-view pre code {                           
    white-space: pre;                                                           
}    
2 Likes