be gay. do code.

This commit is contained in:
Amber 2022-03-02 20:00:20 -06:00
parent 9b21f09de8
commit 25fa034cc6
2 changed files with 37 additions and 3 deletions

12
main.py
View File

@ -1,24 +1,30 @@
#!/usr/bin/python
#import
import readFile
infFile = ""
inFile = ""
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 parse():
def parseMd(title, inFile):
print("probably not gonna use")
def metadata():
print("placeholder")
def css():
print("placeholder")

28
readFile.py Executable file
View File

@ -0,0 +1,28 @@
#!/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")