Compare commits
3 Commits
b2509a3c48
...
4395dea1fd
Author | SHA1 | Date | |
---|---|---|---|
4395dea1fd | |||
795005c878 | |||
31de537153 |
127
build.py
127
build.py
@ -22,6 +22,7 @@ import os
|
|||||||
import re
|
import re
|
||||||
import shutil
|
import shutil
|
||||||
|
|
||||||
|
|
||||||
input_directory = 'content'
|
input_directory = 'content'
|
||||||
static_directory = 'static'
|
static_directory = 'static'
|
||||||
output_directory = 'output'
|
output_directory = 'output'
|
||||||
@ -32,68 +33,86 @@ md_extensions = ['fenced_code', 'codehilite', 'nl2br', 'toc', 'smarty', 'tables'
|
|||||||
def print_file(in_file, out_file):
|
def print_file(in_file, out_file):
|
||||||
print('%-62s -> %s' % (in_file, out_file))
|
print('%-62s -> %s' % (in_file, out_file))
|
||||||
|
|
||||||
template = open('template.html').read()
|
|
||||||
|
|
||||||
os.makedirs(output_directory, exist_ok=True)
|
def copy_static_files():
|
||||||
|
for (dirpath, _, filenames) in os.walk(static_directory):
|
||||||
for (dirpath, _, filenames) in os.walk(static_directory):
|
for filename in filenames:
|
||||||
for filename in filenames:
|
source = os.path.join(dirpath, filename)
|
||||||
source = os.path.join(dirpath, filename)
|
out_path = dirpath.replace(static_directory, '', 1)
|
||||||
out_path = dirpath.replace(static_directory, '', 1)
|
out_path = out_path.lstrip('/')
|
||||||
out_path = out_path.lstrip('/')
|
dest_dir = os.path.join(output_directory, out_path)
|
||||||
dest_dir = os.path.join(output_directory, out_path)
|
os.makedirs(dest_dir, exist_ok=True)
|
||||||
os.makedirs(dest_dir, exist_ok=True)
|
dest = os.path.join(dest_dir, filename)
|
||||||
dest = os.path.join(dest_dir, filename)
|
print_file(source, dest)
|
||||||
print_file(source, dest)
|
shutil.copy2(source, dest)
|
||||||
shutil.copy2(source, dest)
|
|
||||||
|
|
||||||
|
|
||||||
for (dirpath, _, filenames) in os.walk(input_directory):
|
def process_markdown_files():
|
||||||
for filename in filenames:
|
template = open('template.html').read()
|
||||||
markdown_filename = os.path.join(dirpath, filename)
|
for (dirpath, _, filenames) in os.walk(input_directory):
|
||||||
if not markdown_filename.endswith('.md'):
|
for filename in filenames:
|
||||||
continue
|
markdown_filename = os.path.join(dirpath, filename)
|
||||||
|
if not markdown_filename.endswith('.md'):
|
||||||
|
continue
|
||||||
|
|
||||||
markdown_file = open(markdown_filename)
|
markdown_file = open(markdown_filename)
|
||||||
text = markdown_file.read()
|
text = markdown_file.read()
|
||||||
markdown_file.close()
|
markdown_file.close()
|
||||||
|
|
||||||
if not text.startswith('# '):
|
if not text.startswith('# '):
|
||||||
text = '# ' + text
|
text = '# ' + text
|
||||||
|
|
||||||
match = re.match(r'^(.*?)\n', text)
|
match = re.match(r'^(.*?)\n', text)
|
||||||
if match:
|
if match:
|
||||||
title = match.group(1).lstrip('# ')
|
title = match.group(1).lstrip('# ')
|
||||||
else:
|
else:
|
||||||
title = text
|
title = text
|
||||||
title += ' | Colin McMillen'
|
title += ' | Colin McMillen'
|
||||||
if markdown_filename == os.path.join(input_directory, 'index.md'):
|
if markdown_filename == os.path.join(input_directory, 'index.md'):
|
||||||
title = 'Colin McMillen'
|
title = 'Colin McMillen'
|
||||||
|
|
||||||
out_filename = os.path.basename(markdown_filename).replace('.md', '.html')
|
out_filename = os.path.basename(markdown_filename).replace('.md', '.html')
|
||||||
|
|
||||||
out_dirpath = os.path.join(output_directory, dirpath)
|
out_dirpath = os.path.join(output_directory, dirpath)
|
||||||
out_dirpath = out_dirpath.replace('/content', '', 1)
|
out_dirpath = out_dirpath.replace('/content', '', 1)
|
||||||
out_fullpath = os.path.join(out_dirpath, out_filename)
|
out_fullpath = os.path.join(out_dirpath, out_filename)
|
||||||
page_url = out_fullpath.replace('output/', '', 1)
|
page_url = out_fullpath.replace('output/', '', 1)
|
||||||
if page_url.endswith('index.html'): # strip off index.html
|
if page_url.endswith('index.html'): # strip off index.html
|
||||||
page_url = page_url[:-len('index.html')]
|
page_url = page_url[:-len('index.html')]
|
||||||
|
|
||||||
html = markdown.markdown(text, extensions=md_extensions, output_format='html5')
|
html = markdown.markdown(text, extensions=md_extensions, output_format='html5')
|
||||||
output = template.replace('__TITLE_GOES_HERE__', title)
|
output = template.replace('__TITLE_GOES_HERE__', title)
|
||||||
output = output.replace('__CONTENT_GOES_HERE__', html)
|
output = output.replace('__CONTENT_GOES_HERE__', html)
|
||||||
output = output.replace('__PAGE_URL_GOES_HERE__', page_url)
|
output = output.replace('__PAGE_URL_GOES_HERE__', page_url)
|
||||||
|
|
||||||
os.makedirs(out_dirpath, exist_ok=True)
|
os.makedirs(out_dirpath, exist_ok=True)
|
||||||
print_file(markdown_filename, out_fullpath)
|
print_file(markdown_filename, out_fullpath)
|
||||||
out_file = open(out_fullpath, 'w')
|
out_file = open(out_fullpath, 'w')
|
||||||
out_file.write(output)
|
out_file.write(output)
|
||||||
out_file.close()
|
out_file.close()
|
||||||
|
|
||||||
# TODO: make a sitemap / RSS?
|
|
||||||
#index_filename = os.path.join(output_directory, 'index.html')
|
def make_sitemap():
|
||||||
#print_file('', index_filename)
|
sitemap_command = ' '.join("""
|
||||||
#index = open(index_filename, 'w')
|
find output -regextype posix-extended -regex '.*.(html|pdf)$' |
|
||||||
#for f in out_filenames:
|
grep -v ^output/google |
|
||||||
# index.write('<a href="%s">%s</a><br>' % (f, f))
|
grep -v ^output/drafts |
|
||||||
#index.close()
|
perl -pe 's|output|https://www.mcmillen.dev|'
|
||||||
|
> output/sitemap.txt""".split('\n'))
|
||||||
|
os.system(sitemap_command)
|
||||||
|
|
||||||
|
|
||||||
|
def make_rss(): # TODO: implement.
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
os.makedirs(output_directory, exist_ok=True)
|
||||||
|
copy_static_files()
|
||||||
|
process_markdown_files()
|
||||||
|
make_sitemap()
|
||||||
|
make_rss()
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
main()
|
||||||
|
@ -1,7 +0,0 @@
|
|||||||
https://www.mcmillen.dev
|
|
||||||
https://www.mcmillen.dev/language_checklist.html
|
|
||||||
https://www.mcmillen.dev/publications.html
|
|
||||||
https://www.mcmillen.dev/resume.html
|
|
||||||
https://www.mcmillen.dev/sigbovik/
|
|
||||||
https://www.mcmillen.dev/sigbovik/2019.pdf
|
|
||||||
https://www.mcmillen.dev/sigbovik/splatters.html
|
|
Loading…
Reference in New Issue
Block a user