Skip to content

Commit a569252

Browse files
committed
Fixed layout
1 parent f89c8b4 commit a569252

File tree

3 files changed

+4
-3
lines changed
  • src/app/docs

3 files changed

+4
-3
lines changed

src/app/docs/datalog-explanation/page.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ When we search using datalog in WOQL, we implicitly ask for _all_ solutions (thi
3939

4040
Perhaps the most important predicate in WOQL is `triple` which gives results about edges in the current graph.
4141

42-
Our logical variables are represented as strings with the prefix `"v:"`. Our edges are represented by having a position for the _subject_, _predicate_ and _object_ of the edge in the graph. The _predicate_ is the labeled name of the edge, and the _subject_ and _object_ nodes the source, and target respectively.
42+
Our logical variables are represented as strings with the prefix `v:`. Our edges are represented by having a position for the _subject_, _predicate_ and _object_ of the edge in the graph. The _predicate_ is the labeled name of the edge, and the _subject_ and _object_ nodes the source, and target respectively.
4343

4444
```datalog
4545
triple("v:Subject", "v:Predicate", "v:Object")

src/app/docs/how-to-connect-terminuscms/page.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ DFRNT includes a full high quality modeller, visualisation and git-for-data supp
2222

2323
DFRNT is offered as a SaaS platform, complete with the TerminusDB data product API and where API tokens can be generated for your cloud instance in the settings section. It naturally supports a graphical UI for git-for-data actions like clone, push, pull, merge, rebase etc.
2424

25-
![Client examples](https://dfrnt.com/static/aea014768b104377ca7fb7ffd671029c/fee1b/screenshot-new-graph-workspaces.webp)
25+
{% figure src="https://dfrnt.com/static/aea014768b104377ca7fb7ffd671029c/fee1b/screenshot-new-graph-workspaces.webp" alt="Visualisation of connections between documents with cloud hosting (dfrnt.com)" caption="Visualisation of connections between documents with cloud hosting (dfrnt.com)" %}
26+
{% /figure %}
2627

2728
[Sign up today to try the modern modelling experience](https://dfrnt.com/sign-up/).
2829

src/app/docs/unification-of-variables-in-datalog/page.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Unification is the cornerstone of query evaluation in TerminusDB’s WOQL (Web O
1818

1919
## Core Principles of Variable Binding
2020

21-
Variables are defined in WOQL by prefixing them with the letter "v:", or by using the built in variables generation functions in the clients. They are initially not bound, floating, and will take any value.
21+
Variables are defined in WOQL by prefixing them with the letter `v:`, or by using the built in variables generation functions in the clients. They are initially not bound, floating, and will take any value.
2222

2323
In WOQL, they can be bound to constants, or other variables using the `eq()` predicate, or they can get values by letting the WOQL engine match them with knowledge graph data, constrained by the logic of the query.
2424

0 commit comments

Comments
 (0)