Skip to content

Instantly share code, notes, and snippets.

View vinesmsuic's full-sized avatar
💸
Fly, My Wings

Max Ku vinesmsuic

💸
Fly, My Wings
View GitHub Profile
@vinesmsuic
vinesmsuic / example.html
Created October 6, 2019 19:21 — forked from evansims/example.html
Embedding or sharing a image or photo uploaded to Google Drive.
<a href="https://drive.google.com/uc?export=view&id=XXX"><img src="https://drive.google.com/uc?export=view&id=XXX" style="width: 500px; max-width: 100%; height: auto" title="Click for the larger version." /></a>

Problem

A lot of GitHub projects need to have pretty math formulas in READMEs, wikis or other markdown pages. The desired approach would be to just write inline LaTeX-style formulas like this:

$e^{i \pi} = -1$

Unfortunately, GitHub does not support inline formulas. The issue is tracked here.

Investigation