Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add html-nohighlight make target
This generates the html without syntax highlighting to speed things up for
development work.
  • Loading branch information
Paul Cochrane committed Aug 27, 2015
1 parent 19b56c7 commit 7c832ab
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions Makefile
Expand Up @@ -3,6 +3,9 @@
html:
perl6 htmlify.pl

html-nohighlight:
perl6 htmlify.pl --no-highlight

run-all:
perl6 bin/run-examples.pl

Expand All @@ -16,7 +19,8 @@ help:
@echo "Usage: make [html|test]"
@echo ""
@echo "Options:"
@echo " html: generate the HTML documentation"
@echo " run-all: run all examples"
@echo " test: test the supporting software"
@echo " web-server: display HTML on localhost:3000"
@echo " html: generate the HTML documentation"
@echo " html-nohighlight: generate HTML without syntax highlighting"
@echo " run-all: run all examples"
@echo " test: test the supporting software"
@echo " web-server: display HTML on localhost:3000"

0 comments on commit 7c832ab

Please sign in to comment.