Skip to content

Instantly share code, notes, and snippets.

@peterneubauer
Created June 5, 2012 01:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save peterneubauer/2871902 to your computer and use it in GitHub Desktop.
Save peterneubauer/2871902 to your computer and use it in GitHub Desktop.
Slideshow Asciidoc
deck.js and Neo4j docs
======================
== Include a live console ==
Cypher with syntax highlighting and a live console:
[source,cypher]
----
START n=node(1)
RETURN n
----
.Console
[console]
----
(1) {"name":"A"}
(2) {"name":"B"}
(3) {"name":"C"}
(1)-[:KNOWS]->(2) {}
(1)-[:KNOWS]->(3) {}
start n=node(1) return n
----
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment