1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-02-02 04:09:09 +00:00

Make slot fill data available to transclusions

Allows transcluded content to dynamically process <$fill> widgets within the calling transclusion
This commit is contained in:
jeremy@jermolene.com 2022-06-03 08:53:51 +01:00
parent 139047b4f8
commit c42df2233a

View File

@ -312,6 +312,8 @@ TranscludeWidget.prototype.getTransclusionMetaParameter = function(name) {
return this.parseAsInline ? "yes" : "no";
case "parseTreeNodes":
return JSON.stringify(this.parseTreeNode);
case "slotFillParseTrees":
return JSON.stringify(this.slotFillParseTrees);
case "params":
return JSON.stringify(this.stringParametersByName);
default: