Readme2Tex
I worked on a script that automates most of the clutter because you easily type a LaTeX set into a Github markdown: https://github.com/leegao/readme2tex
There are several issues with rendering LaTeX for Github. Firstly, Github markdowns are a variety of tags and most attributes. This does not mean that Javascript-based libraries (like Mathjax) nor CSS-style.
The natural solution, apparently, is to embed images of precompiled equations. However, you will soon realize that LaTeX does more than just convert formulas in dollars into images.

Just embedding images from online compilers gives this unnatural look at your document. In fact, I would say that it is even more readable in your everyday math slang x ^ 2 than jumping
.
I believe it is important that your documents are typed in a natural and understandable way. That's why I wrote a script that, in addition to compiling formulas in images, also ensures that the resulting image is correctly set and aligned with the rest of the text.
For example, here is an excerpt from a .md file regarding some of the enumerated regular expression set properties using readme2tex :

As expected, the set of equations at the top is set by running the appropriate align* environment
**Theorem**: The translation $[\![e]\!]$ given by \begin{align*} ... \end{align*} ...
Note that while inline equations ($ ... $) work with text, the displayed equations (those that are limited to \begin{ENV}...\end{ENV} or $$...$$ ) are centered. This makes it easier for people who are already used to LaTeX to be productive.
If this sounds like something that might help, be sure to check it out. https://github.com/leegao/readme2tex
Lee Dec 27 '16 at 8:55 2016-12-27 08:55
source share