clojure / clojure-cheatsheets

Cheatsheets and information for Clojure/JVM and ClojureScript
https://clojure.org/api/cheatsheet
154 stars 22 forks source link

some text should not be monospaced #2

Open uvtc opened 11 years ago

uvtc commented 11 years ago

Some text in the tables should probably not be monospaced/code. For example:

and so on. Those should be rendered in regular proportonal font.

jafingerhut commented 11 years ago

Yep, those are a bit hacked in right now. In the data structure from which my code creates the HTML and LaTeX versions, I simply put strings in there for such kinds of "comments", and my code treats them much like it does any other symbols in there. It even tries to look them up in Clojure's symbol table to see if they are symbol names, but fails. It hasn't been a high priority yet for me to try to change their font, since other then the font they look just as I want them to. Maybe I'll take a look at my code to see if I can think of an easy way to change that.