From 0cc4c41b9e518c594805cbdb5b2a506e067b7155 Mon Sep 17 00:00:00 2001 From: Lyuba Zehl Date: Mon, 22 Jan 2024 13:55:24 +0100 Subject: [PATCH] Update instance.py fixing #13 --- pipeline/instance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipeline/instance.py b/pipeline/instance.py index cf10654b..953c6521 100644 --- a/pipeline/instance.py +++ b/pipeline/instance.py @@ -90,7 +90,7 @@ def _build_simple_instances(self, docpath:str, instances_ids:List, schemadir:str doc = RstCloth(output_file, line_width=100000) doc.heading(f"{title_CamelCase}", char="#", overline=True) doc.newline() - doc.content(f"Related schema specification: `{title_CamelCase} <{schema_link}>`") + doc.content(f"Related schema specification: `{title_CamelCase} <{schema_link}>`_") doc.newline() doc.content("------------") doc.newline()