Skip to content

Commit bbc1647

Browse files
committed
Quick Save
1 parent ed13f04 commit bbc1647

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ bin/*
3636

3737
# Project ignores
3838
.DS_Store
39-
*.json
39+
_codemeta.json
40+
authors_db_cfg.json
41+
eprints.json
4042
testout
4143
temp.*
4244
temp?.*

how-to/website.mak

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
#
22
# Makefile for running pandoc on all Markdown docs ending in .md
33
#
4-
PROJECT = datatools
4+
PROJECT = datatools, how-to
55

66
PANDOC = $(shell which pandoc)
77

88
MD_PAGES = $(shell ls -1 *.md | grep -v 'nav.md')
99

1010
HTML_PAGES = $(shell ls -1 *.md | grep -v 'nav.md' | sed -E 's/\.md/.html/g')
1111

12-
build: $(HTML_PAGES) $(MD_PAGES) pagefind
12+
build: $(HTML_PAGES) $(MD_PAGES) # pagefind
1313

1414
$(HTML_PAGES): $(MD_PAGES) .FORCE
1515
if [ -f $(PANDOC) ]; then $(PANDOC) --metadata title=$(basename $@) -s --to html5 $(basename $@).md -o $(basename $@).html \
1616
--lua-filter=../links-to-html.lua \
1717
--template=page.tmpl; fi
1818
@if [ $@ = "README.html" ]; then mv README.html index.html; fi
1919

20-
pagefind: .FORCE
21-
pagefind --verbose --exclude-selectors="nav,header,footer" --bundle-dir ./pagefind --source .
22-
git add pagefind
20+
#pagefind: .FORCE
21+
# pagefind --verbose --exclude-selectors="nav,header,footer" --bundle-dir ./pagefind --source .
22+
# git add pagefind
2323

2424
clean:
2525
@if [ -f index.html ]; then rm *.html; fi

pagefind/pagefind-entry.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"version":"0.12.0","languages":{"unknown":{"hash":"unknown_d925698dc48b9bf","wasm":null,"page_count":199}}}

0 commit comments

Comments
 (0)