Support using names in [[[markdown]]] when rendering
This commit is contained in:
parent
681bc1ab36
commit
903d4c9d66
|
@ -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;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue