We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This simple writer does not have an exporter - but I think that this line potentially has a typo with the placement of brackets. https://github.com/substance/simple-writer/blob/master/lib/comment/CommentConverter.js#L28 Exporter is never called by simple-writer so this is not obvious.
Should it read?
export: function(node, el) { el.attr({ 'data-type': 'comment', 'data-comment': node.content }).append(node.content) }
Also also - why are you appending node.content to the element as well as adding node.content as an attribute. Is this correct too?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This simple writer does not have an exporter - but I think that this line potentially has a typo with the placement of brackets. https://github.com/substance/simple-writer/blob/master/lib/comment/CommentConverter.js#L28 Exporter is never called by simple-writer so this is not obvious.
Should it read?
Also also - why are you appending node.content to the element as well as adding node.content as an attribute. Is this correct too?
The text was updated successfully, but these errors were encountered: