I am using @atlaskit/editor-wikimarkup-transformer and @atlaskit/editor-json-transformer.
I have a document in wikimark up and want to display it in reactrenderer of @atlaskit/renderer.
For which encoding wikimark up text to json text using following.
const pmNode = wikiTransformer.parse(document); const doc = jsonTransformer.encode(pmNode); this.setState({ document: doc });
The issue is that after doing this mention resolver is not working properly.