-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP: get first parser tutorial complete
- Loading branch information
Showing
24 changed files
with
888,924 additions
and
459 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
_build/ | ||
venv/ | ||
*.egg-info/ | ||
dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}' | ||
|
Oops, something went wrong.