diff options
author | Volpeon <git@volpeon.ink> | 2022-06-12 12:07:29 +0200 |
---|---|---|
committer | Volpeon <git@volpeon.ink> | 2022-06-12 12:07:29 +0200 |
commit | 7f2deacd64ee2e4cb5d4850a99ff298c0353017d (patch) | |
tree | 68459de3257282a8d49750d0c7d80c061e91a19b /Makefile | |
parent | Only import used UI elements from iro (diff) | |
download | volpeon.ink-7f2deacd64ee2e4cb5d4850a99ff298c0353017d.tar.gz volpeon.ink-7f2deacd64ee2e4cb5d4850a99ff298c0353017d.tar.bz2 volpeon.ink-7f2deacd64ee2e4cb5d4850a99ff298c0353017d.zip |
Fixed list, updated fonts, fixed source wrapping
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -58,6 +58,7 @@ subpages = $(patsubst content/%.md,.cache/meta/%.json, \ | |||
58 | pandoc \ | 58 | pandoc \ |
59 | -f markdown-citations \ | 59 | -f markdown-citations \ |
60 | -t html5 \ | 60 | -t html5 \ |
61 | --wrap preserve \ | ||
61 | --no-highlight \ | 62 | --no-highlight \ |
62 | --template scripts/metadata_tpl.json \ | 63 | --template scripts/metadata_tpl.json \ |
63 | --metadata namespace="$(NAMESPACE)" \ | 64 | --metadata namespace="$(NAMESPACE)" \ |
@@ -68,6 +69,7 @@ subpages = $(patsubst content/%.md,.cache/meta/%.json, \ | |||
68 | pandoc \ | 69 | pandoc \ |
69 | -f markdown-citations \ | 70 | -f markdown-citations \ |
70 | -t html5 \ | 71 | -t html5 \ |
72 | --wrap preserve \ | ||
71 | --lua-filter scripts/metadata_filter.lua \ | 73 | --lua-filter scripts/metadata_filter.lua \ |
72 | --lua-filter scripts/subpages.lua \ | 74 | --lua-filter scripts/subpages.lua \ |
73 | $(GLOBAL_METADATA) \ | 75 | $(GLOBAL_METADATA) \ |
@@ -87,6 +89,7 @@ out/%.html: content/%.md .cache/meta/%.json $(CONTENT_TEMPLATES_SRC) metadata/*. | |||
87 | pandoc \ | 89 | pandoc \ |
88 | -f markdown-citations \ | 90 | -f markdown-citations \ |
89 | -t html5 \ | 91 | -t html5 \ |
92 | --wrap preserve \ | ||
90 | --no-highlight \ | 93 | --no-highlight \ |
91 | --template templates/base.html \ | 94 | --template templates/base.html \ |
92 | --lua-filter scripts/metadata_filter.lua \ | 95 | --lua-filter scripts/metadata_filter.lua \ |
@@ -104,6 +107,7 @@ out/%.xml: content/%.md .cache/meta/%.json $(FEED_TEMPLATES_SRC) metadata/*.yaml | |||
104 | pandoc \ | 107 | pandoc \ |
105 | -f markdown-citations \ | 108 | -f markdown-citations \ |
106 | -t html5 \ | 109 | -t html5 \ |
110 | --wrap preserve \ | ||
107 | --no-highlight \ | 111 | --no-highlight \ |
108 | --template templates/feed.xml \ | 112 | --template templates/feed.xml \ |
109 | --lua-filter scripts/metadata_filter.lua \ | 113 | --lua-filter scripts/metadata_filter.lua \ |