* lisp/ox-html.el (org-html-style-default): `.done' gets `font-family: monospace;'
Other items on the headline that aren't the text itself are monospaced, including non-DONE todo's. TINYCHANGE --- lisp/ox-html.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ox-html.el b/lisp/ox-html.el index 3c3b444..e2d1921 100644 --- a/lisp/ox-html.el +++ b/lisp/ox-html.el @@ -275,7 +275,7 @@ for the JavaScript code in this tag. <!--/*--><![CDATA[/*><!--*/ .title { text-align: center; } .todo { font-family: monospace; color: red; } - .done { color: green; } + .done { font-family: monospace; color: green; } .tag { background-color: #eee; font-family: monospace; padding: 2px; font-size: 80%; font-weight: normal; } .timestamp { color: #bebebe; } -- 1.9.1