From f3dc1456babe89d9c54a361c5a1af16a16e5724e Mon Sep 17 00:00:00 2001 From: Helena Rasche Date: Wed, 26 Jun 2024 11:39:47 +0200 Subject: [PATCH] further TeSS fixes --- _plugins/jekyll-jsonld.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_plugins/jekyll-jsonld.rb b/_plugins/jekyll-jsonld.rb index f23e8e28544c30..4d8aed3b42a451 100644 --- a/_plugins/jekyll-jsonld.rb +++ b/_plugins/jekyll-jsonld.rb @@ -970,7 +970,7 @@ def generate_material_jsonld(material, topic, site) data['about'] = about data['educationalLevel'] = material.key?('level') ? eduLevel[material['level']] : 'Beginner' - data['mentions'] = (material['tags'] || []).map { |x| { '@type': 'Thing', name: x } } + data['mentions'] = (material['tags'] || []).map { |x| { '@type': 'Thing', name: x, url: "#{site['url']}#{site['baseurl']}/tags/#{x}/" } } data['abstract'] = material.fetch('content', '').strip.split("\n").first data