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
testReplaceNodeByAnotherNode
| root |
root := Microdown parse: 'this is a paragraph'.
self assert: root children first class equals: MicParagraphBlock.
transformer visit: root.
self assert: root children first class equals: MicTextBlock.
self assert: root children first bodyString equals: 'test'
does not check the back pointer from the new children to their parent.