EBNFer is a railroad diagram generator for Wordpress. It lets you use Wordpress shortcodes to parse and render Extended Backus–Naur Form diagrams.
Download EBNFer from Wordpress.org
The EBNF parser and renderer is built off of the one created by Vincent Tscherter.
Example usage:
[[ebnf title="JSON RR Diagram"]
"JSON" {
object = "{" [ ( string ':' value ) { ',' string ':' value } ] "}".
array = '[' [ value { ',' value } ] ']'.
}
[/ebnf]]

Shortcode attributes:
{ GRAMMAR }[...] means 0 or 1 times{...} means 0 or many times