Skip to content

Commit

Permalink
Merge pull request #89 from oeg-upm/dev
Browse files Browse the repository at this point in the history
solving #88
  • Loading branch information
dachafra authored Nov 19, 2024
2 parents 6885f62 + 93d66f7 commit 9a1461c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/yatter/termmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def generate_rml_termmap(rml_property, rml_class, text, indentation, mapping_for
if text_prefix_split[0] in prefixes:
text = prefixes[text_prefix_split[0]] + text_prefix_split[1]
elif term_map == RML_REFERENCE or term_map == R2RML_COLUMN:
text = text.replace("$(", "").replace(")", "")
text = generate_rml_template(text).replace("{","").replace("}","")
text = text.replace('"', r'\"')
elif term_map == R2RML_CONSTANT and text == "a":
text = RDF_TYPE
Expand Down

0 comments on commit 9a1461c

Please sign in to comment.