Feature request
Make it possible to toggle “readable line length” for the editor and markdown preview independently.
I have readable line length on in previews as this reads more pleasantly, but my workflow when writing content is different. When writing, I find that sticking to one sentence per line has many benefits, but these are partially lost with forced linewrapping.
Workaround
With “Readable line length” enabled, I’ve found that the following CSS will return the editor to full width:
div.markdown-source-view.is-readable-line-width > div.CodeMirror.cm-s-obsidian.CodeMirror-wrap {
max-width: 100%;
}
As such, this feature request shouldn’t warrant much priority. However, my main concern is that this CSS will ultimately break with some future update, so official support for this would still be desirable.