Support using names in [[[markdown]]] when rendering

This commit is contained in:
Grahame Grieve 2023-10-28 06:37:06 +11:00
parent 681bc1ab36
commit 903d4c9d66
1 changed files with 5 additions and 1 deletions

View File

@ -190,6 +190,7 @@ public class RenderingContext {
private String changeVersion;
private Map<KnownLinkType, String> links = new HashMap<>();
private Map<String, String> namedLinks = new HashMap<>();
/**
*
* @param context - access to all related resources that might be needed
@ -720,5 +721,8 @@ public class RenderingContext {
return this;
}
public Map<String, String> getNamedLinks() {
return namedLinks;
}
}