diff options
author | Michael Milton <ttmigueltt@gmail.com> | 2020-06-25 08:13:17 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-24 17:13:17 -0500 |
commit | efb796099fd77d003dcd49df6a75d1dcc19cefb1 (patch) | |
tree | dd7b862691bfbad2f2ef7d0ef6c2f17908755cc5 /docs/HowToUsePyparsing.rst | |
parent | e91acdf0d3e405ce4b02d2c4f27c51e223a01b59 (diff) | |
download | pyparsing-git-efb796099fd77d003dcd49df6a75d1dcc19cefb1.tar.gz |
Diagram improvements IV (#225)
* Add diagram documentation, add more diagram tests, allow more
customization of diagrams
* Remove accidental edit of unrelated documentation
* Add diagram package
* Add jinja file to manifest
* Add to bdist also
* package_data
* Railroad improvements
* Partial rewrite
* Update
* Use partials everywhere so we can edit the tree before it's constructed
* Rewrite the diagram generator to not duplicate any content; use
monospaced font for titles
* Small documentation change
* Revert back to Python 3.5 type hints, fix a small bug
* More diagram fixes
* Even more pruning; update docs to use SQL example
* Don't check the string value of names now that we don't have to
Diffstat (limited to 'docs/HowToUsePyparsing.rst')
-rw-r--r-- | docs/HowToUsePyparsing.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/HowToUsePyparsing.rst b/docs/HowToUsePyparsing.rst index 9af6862..218aa58 100644 --- a/docs/HowToUsePyparsing.rst +++ b/docs/HowToUsePyparsing.rst @@ -1069,7 +1069,7 @@ This will result in the railroad diagram being written to ``output.html`` Example ------- -You can view an example railroad diagram generated from a pyparsing grammar `here <_static/json.html>`_. +You can view an example railroad diagram generated from a pyparsing grammar for SQL ``SELECT`` statements `here <_static/sql_railroad.html>`_. Customization ------------- |