mirror of
https://github.com/planetmint/planetmint.git
synced 2025-11-25 15:05:49 +00:00
9 lines
269 B
Python
Executable File
9 lines
269 B
Python
Executable File
#!/home/deffuls/work/planetmint/docker_dev_build/bin/python3
|
|
# -*- coding: utf-8 -*-
|
|
import re
|
|
import sys
|
|
from recommonmark.scripts import cm2latex
|
|
if __name__ == '__main__':
|
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
|
sys.exit(cm2latex())
|