html.xonsh/readFile.py

29 lines
414 B
Python
Executable File

#!/usr/bin/python
#html.escape will be useful
import html
title = ""
#html_templ = """
#<head>
#<title>""" + Title + """</title>
#</head>
#
#"""
# Only do the <body> tag
class markdown():
outStr = ""
mdFile = ""
def __init__(self, mdFile):
outStr = ""
self.inFile = mdFile
def markdown(self):
print("placeholder")
def __str__(self):
return("placeholder")