Skip to content

Commit

Permalink
WIP: get first parser tutorial complete
Browse files Browse the repository at this point in the history
  • Loading branch information
jrwdunham committed Jun 12, 2019
1 parent b18873d commit 347e331
Show file tree
Hide file tree
Showing 24 changed files with 888,924 additions and 459 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
_build/
venv/
*.egg-info/
dist/
19 changes: 19 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
.DEFAULT_GOAL := help

THIS_FILE := $(lastword $(MAKEFILE_LIST))

build-docs: ## Convert the reStructuredText docs to HTML under the _build directory
rst2html.py \
--table-style=borderless \
--stylesheet-path=style.css \
docs/dativebase-morpho-parser-tutorial-1.rst \
_build/docs/dativebase-morpho-parser-tutorial-1.html
rst2html.py \
--table-style=borderless \
--stylesheet-path=style.css \
README.rst \
_build/README.html

help: ## Print this help message.
@grep -E '^[0-9a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'

Loading

0 comments on commit 347e331

Please sign in to comment.