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
Would it be possible to add the state object, or the runtime env, as an argument of the callback function?
I'm using markdown-it-doc-done-right in a context (building an Eleventy site)) where I don't control the call to the markdown-it renderer, but where I'd like to augment the passed environment with the toc AST.
What an interesting scenario! Let me check if I got it right: (i) You don't control the call to markdownIt.render, but knows a priori that there's an env being passed as argument to it. (ii) Although without access to (i), you are able to specify additional options to markdown-it-toc-done-right, like a callback function. So, what's about:
// env existsvarenv={};// it's possible to construct the markdown parser and provide optionsvarmd=window.markdownit({html: false,xhtmlOut: true,typographer: true}).use(window.markdownItAnchor,{permalink: true,permalinkBefore: true,permalinkSymbol: '§'}).use(window.markdownItTocDoneRight,{callback: function(html,ast){env.toc=ast}});// but you don't have access to thisvarresult=md.render("# markdown-it rulezz!\n\n${toc}\n## with markdown-it-toc-done-right rulezz even more!",env);
The issue in my case is that at the time I configure markdown-it-toc-done-right I do not know the env. In fact render is called several times (the context is a static site generation, let's say to simplify that it's called once per page), and each time with a different env. So I cannot use an external a priori known env in the callback function… the only way I could access it (as far as I understand) is if it was available dynamically from the callback arguments. Does it make any sense?
Would it be possible to add the
state
object, or the runtimeenv
, as an argument of the callback function?I'm using
markdown-it-doc-done-right
in a context (building an Eleventy site)) where I don't control the call to themarkdown-it
renderer, but where I'd like to augment the passed environment with the toc AST.I'd like to use this as a callback:
I can submit a PR if you’re interested!
The text was updated successfully, but these errors were encountered: