szczyglis-dev / py-gpt

Desktop AI Assistant powered by GPT-4, GPT-4 Vision, GPT-3.5, Gemini, Claude, Llama 3, DALL-E, Langchain, Llama-index, chat, vision, voice control, image generation and analysis, agents, code/command execution, file upload/download, speech synthesis and recognition, access to Web, memory, presets, plugins, assistants, and more. Linux, Windows, Mac.
https://pygpt.net
MIT License
544 stars 106 forks source link

Monospace font #37

Closed linnflux closed 6 months ago

linnflux commented 6 months ago

Brilliant program!

Certain use cases require monospace font output. Editing CSS does not yield results for this.

Using snap version. Thank you!

szczyglis-dev commented 6 months ago

Thanks!

The Space Mono font has been added in 2.1.33.

To update font in already defined custom CSS:

// markdown.*.css

pre {{
    font-family: 'Space Mono';
}}
code {{
    font-family: 'Space Mono';
}}
linnflux commented 6 months ago

Thank you! Works perfectly.