I think it would be useful to be able to edit in plaintext mode without the Markdown rendering within the editor, maybe just a simple toggle switch in settings to turn it off.
I apologize if there is already a way to do this, or if this has been mentioned (please let me know!).
Yes, personally, I just find the enlarged headers and other major stylistic changes undesirable when typing, especially since I want my notes to look good as well in plaintext form, but syntax highlighting would be welcome.
The specific situation I found bothersome was in using āāā or ā===ā to underline h1s or h2s, since the editor made the font larger, so I couldnāt tell how many hyphens or equals signs would align with the text. There is also a rendering bug when using footnotes within a quote block (e.g., ā> some quote[^1]ā) where it renders the superscript footnote link on top of the text to its left in the editor, so that kind of rendering makes it difficult to edit the document, but thatās obviously a bug, and I can make a separate post about that
This would be very helpful for many users. Switch to plain text mode: monospaced font with the same size. But syntax highlighting is a must! If you open several windows, then large titles and different sizes of characters only get in the way and take up space.
If I need to make a preview, Iāll press the preview button.
But editing and writing text in plain text mode, I think many will need (like me).
P.S. If there is any easy way to enable such a mode or there might be a css file, please tell me.
I would use this in an instance, rather I have to rely on 3rd-party css authors since I donāt code css and I donāt want to learn. I would set it to Dark simple mode and never come back. If I could set everything to monospace I would.
As someone who edited / is editing the Clean theme to more or less be this, I support this idea.
At times I open my files in an external plain text editor, but I miss the ability to auto fill links and click between them. Itās nice to have a markdown preview immediately available as well.
This could simply be a barebones theme, but the problem is that a theme also includes all of the formatting for the panes and navigation of Obsidian ā and when you choose a theme youāre leaning into whatever that particular theme editor wanted. ā¹ Would be nice to have a plaintext subtheme that letās you keep the framing of the vault the same.
(In case you want it, Iām uploading my CSS as it currently is ā but know that Iāve minimally tested it and its very much WIP. Itās a slow and lazy process of noticing things arenāt how I want them and changing them. obsidian.css (10.3 KB) )
This is awesome! thank you! Not an issue for me, but on windows, there is no titlebar to grab and move. Nothing that alt+space cant fix. I looked at the css code, and itās beyond me to edit. Would like to see the edit mode look more like āsource codeā. Like āsublimetextā, āvscodeā would display it.
Would love to see all the fonts using some type of monospace. i.e. folder view, status bar at the bottom, etcā¦
I agree about the status bar! I modified this from the Clean theme and havenāt yet figured out how to put the title bar back in. Tonight or tomorrow Iāll upload another version with everything monospace. Do you want the preview in monospace as well? Personally I like the strong distinction of edit mode in mono and preview in sans
Preview can be left as is; normal. Edit mode is were I really like the monospace typeface. Is there a way in css to not increase the size of the font too. i.e. all styles are the same size in edit mode.
I was using a theme called ādark graphite pieā that has the status as monospace. Maybe a clue in there.
Ugh, I did some CSS learning. This code changes the heading font size in the edit mode. Double Ugh, I donāt know what Iām doing. Ha
I just tried the following code. This looks to make the editing mode emulate plaintext coding. This could be āLight/Dark simple modeā maybe, again, I donāt code css. It is nice that there is a āctrl+shift+Iā to look at debug for the css.
This can be already done in few ways, depending on what advanced functionality do you want to strip/preserve/add. So IMHO, this request can be archived.
(a) In OS, Set preferred default app for opening/editing ā.mdā files. Then in Obsidian use command/hotkey āOpen in default appā.
(c) Use CSS snippet which modifies/preserves only features that you want.
For example the following shows headers in standard font-size and removes strike-through line but preserves bold text, elevated block-IDs and footnote references, ā¦