While writing a text it happens from time to time that several spaces creep in. This is not tragic after compiling with pandoc, though I would suggest to implement optional formatting marks, as they are common in most Office-Suits (e.g. showing a light grey dot where a space is used). I am sure that this feature will lead to more tidy (and satisfying) markdown documents.
Thanks so much for opening up your first issue here on the repository! 馃帀 We would like to warmly welcome you to the community behind the app! 鈽猴笍 We'll check in soon and have a look at your issue. In the meantime, you can check your issue and make sure it aligns with our contribution guidelines! Here's the comprehensive list:
An enhancement takes a feature and improves or alters its behaviour. Please make sure to argue how your proposition will aid non-technical text workers, and why it can't be emulated easily with other features or apps!
Feature requests introduce whole new features into the app. This requires a lot of work, so these might be turned down if the implementation costs supersede the benefits we expect to see from implementing it. Please do not be disappointed if that happens. It likely has nothing to do with your great request but simply with us and our missing resources!
You can of course always ask someone to implement this feature, because a PR with a working new feature has much higher chances of being merged! :)
Please note that one of the main reasons for why bug reports cannot be addressed is that there's not enough information for us to find and fix the bug you describe, so make sure you try to pinpoint the bug as close as possible.
The ideal bug report for us has two qualities:
Please note that if you encounter behaviour that does not align with your expectations of what would happen, this might as well be simply intended behaviour and we need to simply _clarify_ why the behaviour is the way it is. This is not to be considered a bug and such issues may be closed! Suggest an enhancement instead!
But now, have a great day and thank you again!
Oh, this shouldn't be too hard, I figure!
Codemirror has a trailing space addon.
Maybe this, plus the custom CSS trick to show line ends mentionned in the documentation, can be activated/deactivated by an additional button on the toolbar?
Isn't this about showing all whitespaces in a document? Here is a screenshot from Noteapad++:

Isn't this about showing _all_ whitespaces in a document? Here is a screenshot from Noteapad++:
Yes, this is exactly what I imagined.
Maybe also including our friend the pilcrow
. :)
Especially in a language like Markdown this can be helpful to keep an overview: E.g. multiple whitespaces and a simple paragraph are interpreted as a paragraph/break.
Maybe also including our friend the pilcrow
The pilcrow can be added via custom CSS (see documentation)
I don't know much about CSS that's why I'm asking: would it be possible to add all whitespaces using CSS? If that's possible, I suppose I can send a PR to update the documentation.
Edit: Aaaand, I think it would be nice to keep pilcrow separate from spaces and tabs. This is obviously about personal preference, but I like seeing all spaces and tabs in my editors but I never want to see pilcrows.
The pilcrow can be added via custom CSS (see documentation)
Thank you very much!
Edit: Aaaand, I think it would be nice to keep pilcrow separate from spaces and tabs. This is obviously about personal preference, but I like seeing all spaces and tabs in my editors but I never want to see pilcrows.
I advocate that too.
I don't know much about CSS that's why I'm asking: would it be possible to add _all_ whitespaces using CSS? If that's possible, I suppose I can send a PR to update the documentation.
I googled that for a while and it seems, that it is (yet) not possible to achieve that with CSS. It can be easily replaced using Java, or you can set a custom font which has a symbol for whitespaces. Source
Furthermore Visual Studio Code recently added this feature into their CSS-Settings. Source
My googling did not turn anything much either. I suppose this needs to be implemented in code (if possible).
Indeed the trailing space addon fulfills only a little part of what is needed.
I found this addon cm-show-invisibles, which seems to do exactly what @dagdrommer wants.
The plugin looks a little bit overly complicated. But I think an overlay mode will do just fine for this
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
This issue has been automatically closed due to inactivity. If you believe that this issue is relevant for many users and should not be closed, feel free to comment so that the admins will be notified.
Most helpful comment
Oh, this shouldn't be too hard, I figure!