How to show math equations in general github’s markdown(not github’s blog)

But github show nothing for the math symbols! please help me, thanks! GitHub markdown parsing is performed by the SunDown (ex libUpSkirt) library. The motto of the library is “Standards compliant, fast, secure markdown processing library in C”. The important word being “secure” there, considering your question :). Indeed, allowing javascript to be executed would … Read more

Loading javascript into a UIWebView from resources

Here we go with a simple setup. Create the following folder structure in your Resources folder. Note that the blue folders are referenced ones The css is just candy 🙂 In lib.js resides your javascript code which you’d like to use. index.html <html> <head> <link rel=”stylesheet” type=”text/css” href=”https://stackoverflow.com/questions/5733883/css/standard.css”> <script src=”js/lib.js” type=”text/javascript” /> </head> <body> <h2>Local … Read more