diff options
author | pommicket <pommicket@gmail.com> | 2021-09-01 18:27:51 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2021-09-01 18:27:51 -0400 |
commit | 336a7931494b149298ec0d215bf643c4ca07a712 (patch) | |
tree | f1f79a7b5470cb5af12c0d914a24ec6aeb8d50f8 /01 | |
parent | f71545c939d530d42903deadd365205a4e02bd56 (diff) |
markdown to HTML converter
Diffstat (limited to '01')
-rw-r--r-- | 01/Makefile | 4 | ||||
-rw-r--r-- | 01/README.md | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/01/Makefile b/01/Makefile index aa48d00..5dde439 100644 --- a/01/Makefile +++ b/01/Makefile @@ -3,5 +3,5 @@ out01: in01 out00 ./out00 out00: in00 ../00/hexcompile -%.html: %.md - markdown $< > $@ +%.html: %.md ../markdown + ../markdown $< diff --git a/01/README.md b/01/README.md index 96de656..859996f 100644 --- a/01/README.md +++ b/01/README.md @@ -333,7 +333,7 @@ header. But by a lucky coincidence, all those entries actually land on 0 bytes, so they'll just be treated as unrecognized (as they should be). So it's all good. -## Limitations +## limitations Like our last program, this one will be slow for large files. Again, that isn't much of a problem for us. Also, if you forget a `;` at the end of a file, it'll |