Compare commits
No commits in common. "25fa034cc67b6f844282b269e509dfe106c9adb6" and "35606fa1be57a95e98b3e3f869728f00fa385919" have entirely different histories.
25fa034cc6
...
35606fa1be
12
main.py
12
main.py
|
@ -1,30 +1,24 @@
|
|||
#!/usr/bin/python
|
||||
|
||||
import readFile
|
||||
#import
|
||||
|
||||
inFile = ""
|
||||
infFile = ""
|
||||
outFile = ""
|
||||
#outFile = outFile + ".html"
|
||||
timeCreate = 0 #Do I want this to be a str?
|
||||
timeMod = 0
|
||||
sTitle = ""
|
||||
|
||||
|
||||
|
||||
|
||||
def printHtml():
|
||||
print("placeholder")
|
||||
file = open(outFile, 'w')
|
||||
|
||||
|
||||
|
||||
def parseMd(title, inFile):
|
||||
def parse():
|
||||
print("probably not gonna use")
|
||||
|
||||
def metadata():
|
||||
print("placeholder")
|
||||
|
||||
|
||||
def css():
|
||||
print("placeholder")
|
||||
|
||||
|
|
28
readFile.py
28
readFile.py
|
@ -1,28 +0,0 @@
|
|||
#!/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")
|
Loading…
Reference in New Issue