markdown-editor
markdown-editor copied to clipboard
Using it half screen ?
Hi,
I really like this markdown editor ! But, there's a bug that would make it really better if corrected :)
I often edit files side by side on my screen (so, half the screen for one app and the other app for the other). But, if I use markdown editor on a half screen, I just get the result visualisation (ie the "textarea" editor disappears).
This is not very practical, because it makes it completely impossible to use on a half screen...
:+1: for this issue
Noticed this too, Seems to be a css media query who hides it at a certain width, comment or remove from index.html:129
@media screen and (max-width: 1024px) {
#in {
display: none;
}
#out {
left: 0;
padding-left: 10px;
}
}
and you can use it halfscreen
Any news on this? Willing to have a PR?
This is optional, I'd say. I'll add this feature in a menu I'm creating, so that the user can have either 'in' or 'out' in half-screen mode.