import datetime
from datetime import datetime
import markdown
import os
from os import path
import pathlib
import config
ENTRY_DIR = 'templates/entry'
def gen_arch_string():
"""
Creates and returns a archive string of every file in ENTRY_DIR.
Returns:
string: html-formatted archive-string
"""
path_ex = ENTRY_DIR
if path.exists(path_ex):
name_list = os.listdir(path_ex)
full_list = [os.path.join(path_ex, i) for i in name_list]
contents = sorted(full_list, key=os.path.getctime)
content_string = ''
last_month = ''
for file in reversed(contents):
curr_date = datetime.fromtimestamp(
os.path.getctime(file)).strftime('%Y-%m-%d')
curr_month = datetime.fromtimestamp(
os.path.getctime(file)).strftime('%b %Y')
if curr_month != last_month:
if last_month != '':
content_string += '\n'
content_string += '
\n'
content_string += '
' + title + '
\n'
content_string += '[
' + \
'standalone' + ']
\n'
if file.endswith('.html'):
for line in text:
content_string += line
content_string += '
'
if file.endswith('.md'):
content_string += gen_md_content(file, 2)
content_string += '
' + \
datetime.fromtimestamp(os.path.getctime(
file)).strftime('%Y-%m-%d') + ''
content_string += '
'
return content_string
def gen_stand_string(path_ex):
"""
Creates a html-string for a file.
If the file is markdown it will convert it.
This functions ensures upscaling for future formats.
Parameters:
path_ex: path to a file.
Returns:
string: html-formatted string string equivalent to the file
"""
filename = os.path.join(ENTRY_DIR, path_ex)
content_string = ''
if path.exists(filename):
title = open(filename).readline().rstrip('\n')
text = open(filename).readlines()[1:]
filename_no_end = filename.split('.', 1)[0]
content_string += '