Skip to content

Commit 4e4bc1f

Browse files
committed
small typo bug in de script mapping a property with a blank space.
1 parent fff231d commit 4e4bc1f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

doc/benchmark/FAIR4RS/FAIR4RS.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ <h1 class="miClase text-center">FAIR4RS Benchmark </h1>
7777
<div class="row flex-space-between">
7878
<div class="col-md-12 align-items-center">
7979
<h4 class="miClase text-left text-separation">BENCHMARK INFORMATION</h4>
80-
<a href="FAIR4RS .ttl" title="RDF Resource Description
80+
<a href="FAIR4RS.ttl" title="RDF Resource Description
8181
Framework"> <img border="0" src="http://www.w3.org/RDF/icons/rdf_flyer.24"
8282
alt="RDF Resource Description Framework Flyer Icon"/></a>
8383
</div>

doc/web_generation_scripts/ttl_transformations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,7 @@ def ttl_to_html_benchmarks(path_ttl, path_mustache, pquery):
552552
data['benchmark_license'] = row.license
553553
# data['benchmark_landing_page'] = row.landing_page
554554
data['benchmark_status'] = row.benchmark_status
555-
data['benchmark_turtle'] = row.label.replace('Benchmark ', '') + '.ttl'
555+
data['benchmark_turtle'] = row.label.replace('Benchmark ', '').strip() + '.ttl'
556556
data['benchmark_same_as'] = row.same_as
557557

558558
if str(row.keywords) not in keywords:

0 commit comments

Comments
 (0)