html.xonsh/main.py

32 lines
422 B
Python
Raw Normal View History

#!/usr/bin/python
2022-03-03 02:00:20 +00:00
import readFile
2022-03-03 00:41:53 +00:00
2022-03-03 02:00:20 +00:00
inFile = ""
2022-03-03 00:41:53 +00:00
outFile = ""
2022-03-03 02:00:20 +00:00
#outFile = outFile + ".html"
2022-03-03 00:41:53 +00:00
timeCreate = 0 #Do I want this to be a str?
timeMod = 0
2022-03-03 00:47:10 +00:00
sTitle = ""
2022-03-03 00:41:53 +00:00
2022-03-03 02:00:20 +00:00
2022-03-03 00:41:53 +00:00
def printHtml():
print("placeholder")
2022-03-03 02:00:20 +00:00
file = open(outFile, 'w')
2022-03-03 00:41:53 +00:00
2022-03-03 02:00:20 +00:00
def parseMd(title, inFile):
2022-03-03 00:41:53 +00:00
print("probably not gonna use")
def metadata():
print("placeholder")
2022-03-03 02:00:20 +00:00
2022-03-03 00:41:53 +00:00
def css():
print("placeholder")
def main():
print("placeholder")