Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kevinpt/syntrax
Railroad syntax diagram generator
https://github.com/kevinpt/syntrax
diagram documentation railroad
Last synced: 29 days ago
JSON representation
Railroad syntax diagram generator
- Host: GitHub
- URL: https://github.com/kevinpt/syntrax
- Owner: kevinpt
- License: mit
- Created: 2016-10-15T17:54:03.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2021-12-03T15:32:34.000Z (about 3 years ago)
- Last Synced: 2024-11-04T07:36:06.771Z (about 1 month ago)
- Topics: diagram, documentation, railroad
- Language: Python
- Homepage: https://kevinpt.github.io/syntrax
- Size: 410 KB
- Stars: 72
- Watchers: 5
- Forks: 8
- Open Issues: 8
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - kevinpt/syntrax - Railroad syntax diagram generator (documentation)
README
.. image:: http://kevinpt.github.io/syntrax/_static/syntrax_icon.png
=======
Syntrax
=======Syntrax is a railroad diagram generator. It creates a visual illustration of the grammar used for programming languages. A specification file describes the syntax as a hierarchy of basic elements. This is processed into an image representing the same syntax with interconnected bubbles.
The specification is a set of nested Python function calls:
.. code-block::
indentstack(10,
line(opt('-'), choice('0', line('1-9', loop(None, '0-9'))),
opt('.', loop('0-9', None))),line(opt(choice('e', 'E'), choice(None, '+', '-'), loop('0-9', None)))
)This is processed by Syntrax to generate an SVG image:
.. image:: http://kevinpt.github.io/syntrax/_static/json_number.png
JSON number syntax
Syntrax can render to PNG bitmap images or SVG, PDF, PS, and EPS vector images. The SVG output can have `hyperlinked text `_ allowing users to quickly navigate to documentation of different syntax elements.
Syntrax is a heavily modified version of the railroad diagram generator used for the `SQLite documentation `_. The generator has been ported to Python, converted to use the Cairo rendering backend, and enhanced with configurable layout options.
Requirements
------------Syntrax requires either Python 2.7 or Python 3.x, Pycairo, and Pango.
The installation script depends on setuptools which will be installed if it
isn't currently present in your Python distribution. The source is written in
Python 2.7 syntax but will convert cleanly to Python 3 when the installer
passes it through 2to3.The Pango library is used compute the dimensions of a text layout. There is no standard package to get the Pango Python bindings installed. It is a part of the Gtk+ library which is accessed either through the PyGtk or PyGObject APIs, both of which are supported by Syntrax. You should make sure that one of these libraries is available before installing Syntrax. A `Windows installer `_ is available. For Linux distributions you should install the relevant libraries with your package manager.
Download
--------You can access the Syntrax Git repository from `Github
`_. You can install direct from PyPI with the "pip"
command if you have it available.Documentation
-------------The full documentation is available online at the `main Syntrax site
`_.