All the ascii art is badly distorted when views with Safari. Is there a font change that needs to be made to view it correctly?
Do you have monafont?
http://monafont.sourceforge.net/
It does work, but only is I set the default font to Mona.
Shouldn't the style sheet specify Mona as the font for the AA?
Here is a solution I just figured out. Copy and past this link into URL bar on any 4-ch page with AA.
javascript:for(i=0;i<document.styleSheets.length;i++){for(j=0;j<document.styleSheets[i].cssRules.length; j++){if(document.styleSheets[i].cssRules[j].selectorText.match(/\.replytext/)){ document.styleSheets[i].cssRules[j].style.setProperty('font-family','Mona',null);}}}
oops, it needed frame support:
javascript:var main_doc = parent.frames["main"].document;for(i=0;i<main_doc.styleSheets.length;i++){for(j=0;j<main_doc.styleSheets[i].cssRules.length;j++){if(main_doc.styleSheets[i].cssRules[j].selectorText.match(/\.replytext/)){ main_doc.styleSheets[i].cssRules[j].style.setProperty('font-family','Mona',null);}}}