I love the syntax or railroad diagrams on json.org which are a graphical representation of the BNF language. I haven't found any tools that can produce results as eloquently. Can anyone identify the tool used to generate these diagrams?


|
I love the syntax or railroad diagrams on json.org which are a graphical representation of the BNF language. I haven't found any tools that can produce results as eloquently. Can anyone identify the tool used to generate these diagrams?
|
|||
|
|
There is an Online Railroad Diagram Generator. It creates SVG syntax diagrams, also known as railroad diagrams, from context-free grammars specified in EBNF. You can copy the SVG code or take screen shots. You have to type in the grammar and it'll make the diagram. For example, to create the first railroad diagram you show, you would use the code:
Then you could go on to define Check out some of the example diagrams on the page. They have XML and even EBNF itself. |
|||||||||||||||||||
|
|
|||||
|
|
There was a similar question a few days ago: What is a good tool for creating railroad diagrams? That question was about how railroad diagrams in the SQLite syntax diagrams were generated. The accepted answer found that the diagrams were generated using a DSL written in Tcl. Another answer offered a suggestion to use a diagram generator which works off of EBNL grammar. |
|||
|
|
For completions sake: Tab Atkins Jr. created a Javascript Railroad-diagram Generator using SVG. specifically because he could not find one that had the visual appeal he wanted , i.e. "the JSON.org look". |
|||
|
|
|
Take a look at http://code.google.com/p/html-railroad-diagram/ which generates HTML railroad diagrams. There is an example that shows the JSON railroad generated in an HTML page by JavaScript with links. |
|||
|
|
|
I seem to remember that IBM has a tool that builds such diagrams as part of their BookMaster SGML suite. Railroad diagrams are often used in mainframe documentation. |
|||
|
|
|
The XText language development framework has a Xtext Syntax Graph that is a railroad diagram of the grammar you are defining with an option to export as a PNG, thought I would add this because I am looking for the same thing but I wanted more than an image. Check it out here http://www.eclipse.org/Xtext/ |
|||
|
|