change heading for categories

This commit is contained in:
Rohit Tanwar
2018-01-21 13:25:22 +05:30
parent 3c45b40202
commit e87e329e2e

View File

@ -35,7 +35,7 @@ end = open("static-parts/readme-end.md").read()
toAppend = ''
tag_dict = tagger()
for category in tag_dict:
toAppend = toAppend + '# ' + EMOJIS[category] + ' ' + title_case(category) +'\n\n'
toAppend = toAppend + '## ' + EMOJIS[category] + ' ' + title_case(category) +'\n\n'
for snippet in tag_dict[category]:
someFile = open("snippets/" + snippet + '.md')
fileData = someFile.read()