How to make page use only monospace by default

Windows 10, v2.4.9.
I have a notebook that is for linux notes. Lots of source code, config files, ASCII art, etc. Is there a way to make the page or notebook only use a monospaced font?

For a single note you could put something like this at the top of the markdown for that note.

<style>
* {
  font-family: "Courier New",monospace !important;
  }
</style>

Change "Courier New" to whatever is your preferred monospace font.

Thanks. That kinda worked. When I have the view that has markdown and an output pane (split window), it uses Courier New. When I click on the primary editor mode (the WYSIWG mode?), it reverts to Arial.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.