Skip to content

Latest commit

 

History

History
146 lines (105 loc) · 2.84 KB

template.adoc

File metadata and controls

146 lines (105 loc) · 2.84 KB

This is a Template

Intro text.

Refer to a path/to/file.

MATCH (:Person)-[:KNOWS]->(p)
RETURN p

Raw output:

2020-10-20 15:14:13.120+0000 INFO [a.b.c.Something] Some log

Open a terminal and run:

$ brew install openssl

Once installed, run openssl version -a:

$ openssl version -a
OpenSSL 1.0.2o  27 Mar 2018
....
Important
Do not forget to add role=noheader when the source block contains the command, and the expected output.

The command format is:

$ nc -v <hostname> 5000
Note
Use role=nocopy to disable the "Copy to Clipboard" button. This role is particularly useful when the command contains a placeholder because we don’t want the user to blindly copy and paste the command.

Add the following to neo4j.conf:

causal_clustering.ssl_policy=cluster
dbms.ssl.policy.cluster.ciphers=TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384
dbms.ssl.policy.cluster.client_auth=REQUIRE

Another Section

Some bullet points:

  • One

  • Two

  1. First

  2. Second

Note
An admonition paragraph draws the reader’s attention to auxiliary information. Its purpose is determined by the label at the beginning of the paragraph.

Here are the other built-in admonition types:

Tip
Pro tip…​
Important
Don’t forget…​
Warning
Watch out for…​
Caution
Ensure that…​

Images

A picture is worth a thousand words.

Shared Lock
Important
Images must be uploaded to https://s3.amazonaws.com/dev.assets.neo4j.com/kb-content. The attribute {assets-cdn} is configured in both the Antora pipeline, and the Gradle convert tasks.

List

You can use numbered lists to describe a list of steps:

  1. Step 1

  2. Step 2

  3. Step 3

As you can see, you don’t need to include an ordinal in front of each list marker.

If you need to add complex content on a step, you will need to use the list continuation symbol (+). For instance:

  1. Configure neo4j.conf:

    First paragraph.

    Second paragraph.

    $ echo "hello word"

    Third paragraph:

    dbms.connector.bolt.enabled=true
  2. Identify the location of the java installation:

    $ readlink -f $(which java)
  3. A literal paragraph does not require a list continuation:

    $ ps -ealf | grpe 8080
  4. Step 4