Skip to content

Commit

Permalink
Update StructureDefinitionRenderer.java
Browse files Browse the repository at this point in the history
  • Loading branch information
jmandel authored May 5, 2024
1 parent 5f6e228 commit 0bdd759
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1300,9 +1300,9 @@ public String header() throws Exception {
b.append("<p class=\"profile-derivation\">\r\n");
StructureDefinition sdb = context.fetchResource(StructureDefinition.class, sd.getBaseDefinition());
if (sdb != null)
b.append(/\*#!\*/"This profile builds on" + " <a href=\\"" + Utilities.escapeXml(sdb.getWebPath()) + "\\">" + gen.getTranslated(sdb.getNameElement()) + "</a>.");
b.append(/*#!*/"This profile builds on" + " <a href=\"" + Utilities.escapeXml(sdb.getWebPath()) + "\">" + gen.getTranslated(sdb.getNameElement()) + "</a>.");
else
b.append(/\*#!\*/"This profile builds on" + " " + sd.getBaseDefinition() + ".");
b.append(/*#!*/"This profile builds on" + " " + sd.getBaseDefinition() + ".");
b.append("</p>\r\n");
}
b.append("<p class=\"profile-publication\">\r\n");
Expand Down

0 comments on commit 0bdd759

Please sign in to comment.