Skip to content

Instantly share code, notes, and snippets.

View AkashiSN's full-sized avatar
🏠
Working from home

Akashi_SN AkashiSN

🏠
Working from home
View GitHub Profile
@AkashiSN
AkashiSN / md-tex2img.py
Last active December 29, 2017 14:00
Markdownの$$で囲まれたTex数式を画像に置き換えてGitHubなどで表示できるようにするスクリプト
#!/usr/bin/env python3
import sys
pattern = '<img src="https://latex.codecogs.com/png.latex?{}" />'
with open(sys.argv[1] ,"r") as f:
new_lines = ""
while True:
new_line = ""
line = f.readline()