Skip to content

Commit

Permalink
Fix indentation in items for source template (#436)
Browse files Browse the repository at this point in the history
  • Loading branch information
jgonggrijp committed Apr 10, 2021
1 parent 1a6c1b8 commit eec93df
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@ PREFIX {{label}}: <{{prefix}}>
{{/each}}
PREFIX schema: <http://schema.org/>
PREFIX oa: <http://www.w3.org/ns/oa#>
CONSTRUCT {
CONSTRUCT {
?annotation ?a ?b.
?body ?c ?d.
?target ?e ?f.
?selector ?g ?h.
}
}
WHERE {
?annotation oa:hasBody ?body.
OPTIONAL { ?body ?c ?d }.
?annotation oa:hasTarget ?target;
?a ?b.
{{#if userURI}}
?annotation schema:creator <{{userURI}}> .
{{/if}}
?annotation schema:creator <{{userURI}}>.
{{/if}}
?target oa:hasSource <{{sourceURI}}>;
oa:hasSelector ?selector;
?e ?f.
Expand Down

0 comments on commit eec93df

Please sign in to comment.