Skip to content

Commit

Permalink
Deployed e79a2f9 with MkDocs version: 1.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
seakayone committed Nov 13, 2024
0 parents commit 2962001
Show file tree
Hide file tree
Showing 181 changed files with 321,836 additions and 0 deletions.
Empty file added .nojekyll
Empty file.
3,425 changes: 3,425 additions & 0 deletions 01-introduction/example-project/index.html

Large diffs are not rendered by default.

2,941 changes: 2,941 additions & 0 deletions 01-introduction/file-formats/index.html

Large diffs are not rendered by default.

2,932 changes: 2,932 additions & 0 deletions 01-introduction/standoff-rdf/index.html

Large diffs are not rendered by default.

3,163 changes: 3,163 additions & 0 deletions 01-introduction/what-is-dsp/index.html

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions 02-dsp-ontologies/introduction-fig1.dot
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
digraph {
rankdir = LR

node [style = filled, fontcolor = white]

subject [color = navy, fillcolor = slateblue4]
object [color = tomato3, fillcolor = tomato2]

subject -> object [label = "predicate", fontsize = 11, color = cyan4]
}
Binary file added 02-dsp-ontologies/introduction-fig1.dot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
42 changes: 42 additions & 0 deletions 02-dsp-ontologies/introduction-fig2.dot
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
digraph {
rankdir = LR

{
node [color = navy, fillcolor = slateblue4, style = filled, fontcolor = white]

sub1 [label = "subject no. 1"]
sub2 [label = "subject no. 2"]
sub3 [label = "subject no. 3"]
}

{
node [shape = box, color = firebrick]

lit1 [label = "literal no. 1"]
lit2 [label = "literal no. 2"]
lit3 [label = "literal no. 3"]
}

edge [fontsize = 11, color = cyan4]

sub1 -> lit1 [label = "predicate no. 1"]
sub1 -> lit2 [label = "predicate no. 2"]
sub1 -> sub2 [label = "predicate no. 3"]

sub2 -> lit3 [label = "predicate no. 4"]
sub2 -> sub3 [label = "predicate no. 5"]

// Add invisible edges to order the nodes from top to bottom.

{
rank = same
lit1 -> lit2 -> sub2 [style = invis]
rankdir = TB
}

{
rank = same
lit3 -> sub3 [style = invis]
rankdir = TB
}
}
Binary file added 02-dsp-ontologies/introduction-fig2.dot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 23 additions & 0 deletions 02-dsp-ontologies/introduction-fig3.dot
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
digraph {
{
node [color = navy, fillcolor = slateblue4, style = filled, fontcolor = white]

book [label = "ex:book1"]
page [label = "ex:page1"]
}

{
node [shape = box, color = firebrick]

title [label = "‘Das Narrenschiff’"]
author [label = "‘Sebastian Brant’"]
pagename [label = "‘a4r’"]
}

edge [fontsize = 11, color = cyan4]

book -> title [label = "ex:title"]
book -> author [label = "ex:author"]
page -> book [label = "ex:pageOf"]
page -> pagename [label = "ex:pagename"]
}
Binary file added 02-dsp-ontologies/introduction-fig3.dot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 2962001

Please sign in to comment.