diff options
author | 53hornet <53hornet@gmail.com> | 2018-07-14 16:28:28 -0400 |
---|---|---|
committer | 53hornet <53hornet@gmail.com> | 2018-07-14 16:28:28 -0400 |
commit | f10ded04350e19377f5c2a904db86c5395d12531 (patch) | |
tree | d47927420e1144c180c399b5e1adfd9506a452e8 /makefile | |
parent | 7654bcc6be740276477eb2f2d6d8d90c4a63ff83 (diff) | |
download | md-site-f10ded04350e19377f5c2a904db86c5395d12531.tar.xz md-site-f10ded04350e19377f5c2a904db86c5395d12531.zip |
Reworking CSS; is a TOC really necessary?
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -11,10 +11,10 @@ all: css 53hor.net atc.53hor.net .PHONY: 53hor.net 53hor.net: $(53HORNET_HTML) -html/53hor.net/%.html: md/53hor.net/%.md md/53hor.net/include/nav.inc +html/53hor.net/%.html: md/53hor.net/%.md md/53hor.net/nav.html @echo "53hor.net: $< -> $@" @mkdir -p "$(@D)" - @pandoc "$<" -f markdown -t html5 -s --toc --toc-depth=3 -B md/53hor.net/include/nav.inc -c /include/styles.css -o "$@" + @pandoc "$<" -f markdown -t html5 -s --toc --toc-depth=3 -B md/53hor.net/nav.html -c /styles.css -o "$@" .PHONY: atc.53hor.net atc.53hor.net: $(ATC_HTML) @@ -22,7 +22,7 @@ atc.53hor.net: $(ATC_HTML) html/atc.53hor.net/%.html: md/atc.53hor.net/%.md @echo "atc.53hor.net: $< -> $@" @mkdir -p "$(@D)" - @pandoc "$<" -f markdown -t html5 -s --toc --toc-depth=2 -c /include/styles.css -o "$@" + @pandoc "$<" -f markdown -t html5 -s --toc --toc-depth=3 -c /styles.css -o "$@" .PHONY: css css: $(CSS_HTML) |