Added Doordash and have JJ meetings

This commit is contained in:
Norm Rasmussen
2022-11-14 18:01:18 -05:00
parent c599b8b792
commit b8fcfc0707
10 changed files with 153 additions and 58 deletions

View File

@ -12,7 +12,7 @@ rootdir = "/Users/normrasmussen/Documents/Northpass/Scripts/API_Notes/SampleNote
def findheadings():
headingsarray = []
with open(rootdir + "G2.md", "r") as myfile:
with open(rootdir + "Flink.md", "r") as myfile:
file = myfile.readlines()
for headings in file:
if "##" in headings:
@ -38,6 +38,7 @@ def noteSections(rootdir):
def mdConvert(rootdir, notes):
conversion = markdown.markdown(notes)
print(notes)
# Add Conversion variable to payload for hubspot. Copy functions from the other files.
if __name__ == "__main__":
noteSections(rootdir)