Compare commits
5 Commits
7271899b78
...
e4b7d7af2b
Author | SHA1 | Date |
---|---|---|
ktyl | e4b7d7af2b | |
ktyl | 60998ee701 | |
ktyl | 09b24d782f | |
ktyl | b68fe4264a | |
ktyl | bb7f7fa1d4 |
|
@ -4,12 +4,3 @@
|
||||||
[submodule "blog"]
|
[submodule "blog"]
|
||||||
path = blog
|
path = blog
|
||||||
url = https://sauce.pizzawednes.day/ktyl/blog.git
|
url = https://sauce.pizzawednes.day/ktyl/blog.git
|
||||||
[submodule "journal"]
|
|
||||||
path = sr/garden/journal
|
|
||||||
url = git@sauce.pizzawednes.day:ktyl/journal.git
|
|
||||||
[submodule "src/garden/period3.xyz"]
|
|
||||||
path = src/garden/period3.xyz
|
|
||||||
url = git@sauce.pizzawedney.day:ktyl/period3.xyz
|
|
||||||
[submodule "src/garden/journal"]
|
|
||||||
path = src/garden/journal
|
|
||||||
url = git@sauce.pizzawednes.day:ktyl/journal
|
|
||||||
|
|
|
@ -1,2 +1 @@
|
||||||
__pycache__
|
|
||||||
*.html
|
*.html
|
||||||
|
|
|
@ -1,16 +1,11 @@
|
||||||
py = feed.py books.py
|
py = feed.py books.py
|
||||||
poetry = journal/poetry/fallen-leaves.md
|
md = rss.md book-collecting.md gardens.md
|
||||||
journal-images = journal/poetry/tree.jpg
|
|
||||||
md = rss.md book-collecting.md gardens.md $(poetry)
|
|
||||||
html = $(md:%.md=%.html)
|
html = $(md:%.md=%.html)
|
||||||
|
|
||||||
site: Makefile $(md) $(py) $(journal-images)
|
site: Makefile $(md) $(py)
|
||||||
mkdir html
|
mkdir html
|
||||||
python md2html.py $(md)
|
python md2html.py $(md)
|
||||||
cp -R $(html) $(py) $(journal-images) Makefile html
|
cp $(html) $(py) Makefile html
|
||||||
|
|
||||||
journal: $(poetry)
|
|
||||||
python journal.py $<
|
|
||||||
|
|
||||||
clean-html:
|
clean-html:
|
||||||
rm -r html
|
rm -r html
|
||||||
|
@ -24,4 +19,4 @@ rss: feed
|
||||||
|
|
||||||
clean: clean-html
|
clean: clean-html
|
||||||
|
|
||||||
.PHONY: feed clean journal
|
.PHONY: feed clean
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit 170fb442a8c4a0c06b47e28821ab5fb475e35be1
|
|
|
@ -1,30 +0,0 @@
|
||||||
#!/usr/bin/env python
|
|
||||||
|
|
||||||
import sys
|
|
||||||
import os
|
|
||||||
|
|
||||||
import md2html
|
|
||||||
|
|
||||||
def print_usage():
|
|
||||||
print(f"usage: python {sys.argv[0]} PATHS")
|
|
||||||
print("")
|
|
||||||
print("\t\PATHS\tpaths of input markdown files")
|
|
||||||
|
|
||||||
|
|
||||||
if len(sys.argv) < 2:
|
|
||||||
print_usage()
|
|
||||||
exit(1)
|
|
||||||
|
|
||||||
# we don't want to publish *everything* in the journal, so for now let's just
|
|
||||||
# hardcode the files we want.
|
|
||||||
files = sys.argv[1:]
|
|
||||||
|
|
||||||
# TODO: copy images
|
|
||||||
# TODO: separate md fromm images
|
|
||||||
|
|
||||||
for f in files:
|
|
||||||
md2html.write_html(f)
|
|
||||||
html_path = f.replace(".md", ".html")
|
|
||||||
print(html_path)
|
|
||||||
|
|
||||||
|
|
|
@ -8,28 +8,25 @@ def print_usage():
|
||||||
print("")
|
print("")
|
||||||
print("\t\PATHS\tpaths of input markdown files")
|
print("\t\PATHS\tpaths of input markdown files")
|
||||||
|
|
||||||
|
if len(sys.argv) < 2:
|
||||||
|
print_usage()
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
paths = sys.argv[1:]
|
||||||
|
|
||||||
|
bad_paths = [p for p in paths if not p.endswith(".md")]
|
||||||
|
if len(bad_paths) != 0:
|
||||||
|
for p in bad_paths:
|
||||||
|
print(f"Not a markdown file: {p}")
|
||||||
|
|
||||||
|
exit(1)
|
||||||
|
|
||||||
def write_html(src : str):
|
def write_html(src : str):
|
||||||
with open(src) as md:
|
with open(src) as md:
|
||||||
dest = src.replace(".md", ".html")
|
dest = src.replace(".md", ".html")
|
||||||
with open(dest, "w") as html:
|
with open(dest, "w") as html:
|
||||||
|
print(f"{src} -> {dest}")
|
||||||
html.write(markdown.markdown(md.read()))
|
html.write(markdown.markdown(md.read()))
|
||||||
|
|
||||||
|
for p in paths:
|
||||||
if __name__ == "__main__":
|
write_html(p)
|
||||||
|
|
||||||
if len(sys.argv) < 2:
|
|
||||||
print_usage()
|
|
||||||
sys.exit(1)
|
|
||||||
|
|
||||||
paths = sys.argv[1:]
|
|
||||||
|
|
||||||
bad_paths = [p for p in paths if not p.endswith(".md")]
|
|
||||||
if len(bad_paths) != 0:
|
|
||||||
for p in bad_paths:
|
|
||||||
print(f"Not a markdown file: {p}")
|
|
||||||
|
|
||||||
exit(1)
|
|
||||||
|
|
||||||
for p in paths:
|
|
||||||
write_html(p)
|
|
||||||
|
|
Loading…
Reference in New Issue