You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would appear that there must be at lest one declared function within a document before a triple hat expression can reference a function in parent (or grandparent etc.) document. This will prevent 'clean' documents from being created that have no code but reference functions from other documents in the hierarchy.
The text was updated successfully, but these errors were encountered:
Suppose we have a function defined in a document:
parent.md
And if a child document that follows it makes a call to the parent via a triple hat expression:
child.md
This results in the error
I cannot find a 'myFunction' variable
However if some other function is declared in the child document, the function in the parent is called correctly:
It would appear that there must be at lest one declared function within a document before a triple hat expression can reference a function in parent (or grandparent etc.) document. This will prevent 'clean' documents from being created that have no code but reference functions from other documents in the hierarchy.
The text was updated successfully, but these errors were encountered: