codimd
codimd copied to clipboard
View width scaling limit too small
The view seems to be of fixed maximum width. Beyond that width the page is just filled with whitespace. (see picture) The limit seems unreasonably small for current displays. As far as I can tell, this is true for all browsers. This is especially annoying for tables, which keep their scrollbar even though there would be enough space to show the whole table.
there are many tickets for this, for both codimd and the competing hedgedoc project, but neither seems to be willing to change it.
Its especially frustrating if you have an ultra wide monitor.
You can add the following custom style to the note to unset the maximum width limitation of the view:
<style>
.markdown-body {
max-width: unset;
}
</style>