I hereby claim:
- I am christopherkullenberg on github.
- I am christopherk (https://keybase.io/christopherk) on keybase.
- I have a public key ASDboeD8TeJEQ73WqCMqh2GOG5qZyAilttRdIbkO0hQgEQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
''' | |
Input: file with LaTeX links, ex. "\href{http://example.com}{example}" | |
Output: file with mardown links, ex. [example](http://example.com) | |
''' | |
import re | |
outfile = open('filewithmarkdownlinks.md', 'w') #make up a new filename | |
texfile = open('filewithlatexlinks.md', encoding='utf-8') # the file with latex links in it | |
textext = texfile.readlines() |