neo4j-contrib / graphgist

Easy publishing with graph data included
http://gist.neo4j.org/
208 stars 68 forks source link

use the Cypher query comments as titles #12

Closed peterneubauer closed 10 years ago

peterneubauer commented 10 years ago

use

[source,cypher]
----
//this is the title 
MATCH (n) RETURN n
----

As the query title, as in the Neo4j Browser

nawroth commented 10 years ago

As there is already an AsciiDoc syntax for this, I think it's much better to go with that. We just have to add styles for it, the HTML is already in place.

.this is the title 
[source,cypher]
----
MATCH (n) RETURN n
----
nawroth commented 10 years ago

Fixed the styling, see http://localhost/gist/?7005107