Skip to content

Commit

Permalink
pandoc figured out
Browse files Browse the repository at this point in the history
  • Loading branch information
vmchale committed Feb 22, 2024
1 parent f995e52 commit d38c9b8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# 2.0.3.0

* Handle some parsing/currying cases (still hinky)
* Add `sub1` builtin like AWK's `sub`
* Better presentation of regex engine errors
Expand Down
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ docs/index.html: doc/guide.html
cp $^ $@

doc/guide.pdf: doc/guide.md
pandoc $^ -o $@ --toc
pandoc $^ -o $@ --toc --pdf-engine=lualatex -V 'monofont:JetBrains Mono'

doc/guide.html: doc/guide.md
pandoc -s $^ -o $@ --toc
Expand Down Expand Up @@ -96,13 +96,13 @@ bin/powerpc64le-linux-ja: $(HS_SRC)
tags: $(JAC_SRC)
fd '.jac$$' prelude lib -x ja run examples/tags.jac -i > $@

bench/data/:
mkdir -p $@
bench/data/lines.txt: test/examples/data/1.txt
perl -0777pe '$$_=$$_ x 10' $^ > $@

bench/data/span.txt: examples/span.txt $(dir $@)
bench/data/span.txt: examples/span.txt
perl -0777pe '$$_=$$_ x 10000' $^ > $@

bench/data/ulysses.txt: $(dir $@)
bench/data/ulysses.txt:
curl https://www.gutenberg.org/files/4300/4300-0.txt -o $@

check:
Expand Down
Binary file modified doc/guide.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion jacinda.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.2
name: jacinda
version: 2.0.2.0
version: 2.0.3.0
license: AGPL-3.0-only
license-file: COPYING
maintainer: [email protected]
Expand Down

0 comments on commit d38c9b8

Please sign in to comment.