glaciers-in-archives / snowman

A static site generator for SPARQL backends.
GNU Lesser General Public License v3.0
112 stars 11 forks source link

`get_remote` and `get_remote_with_config` does not support RDF URIs as endpoint arguments #89

Closed Abbe98 closed 6 months ago

Abbe98 commented 7 months ago

Current workaround is to use print to cast the URI to a string:

{{ $iiif_json := from_json (get_remote (print .iiif_manifest)) }}

The functions should automatically cast URIs so that one can write:

{{ $iiif_json := from_json (get_remote .iiif_manifest) }}