What’s the best way to write Mathematical Equations on the Web?

The jsMath package is an option that uses LaTeX markup and native fonts. Quoting from their webpage http://www.math.union.edu/~dpvc/jsMath/: The jsMath package provides a method of including mathematics in HTML pages that works across multiple browsers under Windows, Macintosh OS X, Linux and other flavors of unix. It overcomes a number of the shortcomings of the … Read more

Using MathJax with Jekyll

Certainly you can use mathjax with Jekyll. To get this working make sure that If you’re writing your post in markdown, your markdown interpreter isn’t hammering your mathjax input. The best way to protect it I have found is to always put display math in <div> elements and inline math in <span> elements, which most … Read more

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