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
Currently a javascript syntax highlighter format method has to do this to call the 'superclass method':
const toHash = function (object) { return object && !object.$$is_hash ? Opal.hash2(Object.keys(object), object) : object } return Opal.send(this, Opal.find_super_dispatcher(this, 'format', this.$format), [node, lang, toHash(opts)])
It would be considerably more convenient, and avoid the need to import Opal, if this could be hidden in the superclass/adapter so one could write:
this.super.format(node, lang, opts)
https://gitlab.com/djencks/asciidoctor-highlight.js-build-time could provide a test case.
The text was updated successfully, but these errors were encountered:
resolves asciidoctor#1220 super.format
4da2f88
ff79bdf
resolves #1220 super.format (#1682)
e981089
resolves #1220
Successfully merging a pull request may close this issue.
Currently a javascript syntax highlighter format method has to do this to call the 'superclass method':
It would be considerably more convenient, and avoid the need to import Opal, if this could be hidden in the superclass/adapter so one could write:
https://gitlab.com/djencks/asciidoctor-highlight.js-build-time could provide a test case.
The text was updated successfully, but these errors were encountered: