Readable Line Length
option is not accepted.Given the number of issues registered, many users are mistaking it for a bug.It might be better to turn it off by default from version 5.8.1.
Certainly, if the area for the editor or preview is wide, the text becomes long horizontally and hard to read.
In my case, I limit the width using a stylesheet. However, I prefer to have a wider area for tables and code sections (which often need to be wider), so I exclude them from this restriction. It’s like this.
.editor {
.CodeMirror {
pre {
max-width: 720px;
}
pre.list-line-1 {
max-width: 700px;
}
pre.list-line-2 {
max-width: 690px;
}
pre.list-line-3 {
max-width: 680px;
}
pre.table-row,
pre.gfm-codeblock {
max-width: none;
}
}
}
.mde-preview {
h2,
p,
ul,
ol,
li {
max-width: 720px;
}
}
I think it’s difficult to make it a plugin because it requires fine-tuning depending on the theme and personal preferences vary.
This is translated into English by ChatGPT, so I will write it in Japanese as well.
多くの Issue が登録されていることからも Readable Line Length は受け入れられていないようです。5.8.1 からはオフにするのが良いのではないでしょうか。
とはいえ、一行が横長になる場合に読みにくい問題があるのも確かです。僕の場合はスタイルシートで制限を設けています。ただし、テーブルとコードは横長になることが多いので対象外としています。
これを plugin 化したいとは思っていましたが、テーマや好みにもよるので難しそうです。