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?

alt text

alt text

link|improve this question

I agree they're pretty cool, but I have no idea what tool (if any) was used. – Matthew Flaschen Apr 28 '09 at 8:34
feedback

6 Answers

up vote 18 down vote accepted

from Douglas Crockford
to Aleem B
date Tue, Apr 28, 2009 at 6:01 PM
subject Re: Railroad Diagrams on json.org

I drew them with Visio. Creative Docs.NET also works well.

--

Aleem B wrote:

Hello Douglas,

I thoroughly enjoy most things you put out there and the railroad diagrams on json.org are no different. I have been trying to look around for a tool that would generate diagrams nearly as eloquent but have had no luck:

http://stackoverflow.com/questions/796824/tool-for-generating-railroad-diagram-used-on-json-org

Is there some tool you used to convert the BNF to these diagrams or were they hand crafted?

-- Aleem

link|improve this answer
feedback

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:

object ::= '{' ((string ':' value ) ( ',' string ':' value )*)? '}'

enter image description here

Then you could go on to define string and value using string ::= ... and value ::= ... The references are all shown.

Check out some of the example diagrams on the page. They have XML and even EBNF itself.

link|improve this answer
1  
This is really an awesome tool! Thanks! – Lukas Eder Jan 6 at 9:32
Any idea on how to get the graphics into your own document other than a) making a screenshot b) copying the svg source from the page's source? – rudolfson Mar 21 at 15:27
1  
@rudolfson - You can write your own, the central logic isn't too bad, and all the code's there to see. Then just embed in your document. I wrote a WP plugin based on this. - The hardest part is making the graphics look nice. – Peter Ajtai Mar 21 at 16:31
feedback

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.

link|improve this answer
To add to that, there is also a list of tools in the Wikipedia article I link to. A true railroad diagram should not need arrows--if you imagine a train travelling those tracks it should be clear what routes you can or cannot take. And the json.org diagrams are just so pretty, I have to know if there's a tool for them =) Have already seen these links but might helps others. – aleemb Apr 28 '09 at 11:49
feedback

See this, for example. Not quite what you need but still.

link|improve this answer
feedback

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.

link|improve this answer
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.