muji

Results 108 comments of muji

Issue #82 should be resolved first in my opinion.

Thanks for the input Nico but this discussion is about this library and it's ability to support converting back to Commonmark from the AST generated. Your implementation here: https://github.com/nicojs/html2commonmark/blob/master/src/MarkdownRenderer.ts Is...

My bad Nico, maybe you can let us know if there is anything missing from the AST that would help to get the job done, I am personally keen to...

Thanks @nicojs, I have added a little to this thread: http://talk.commonmark.org/t/issues-to-resolve-before-1-0-release/1287/26?u=tmpfs What I think we need to work out is all the things missing from the AST that at the...

Hello folks, I have had it done and working (in production) for quite a while now, I was awaiting guidance from @jgm on how to proceed creating separate renderer npm...

I think it is ok to go, we verified performance is acceptable quite a while ago. I have been using the markdown and man renderers for my tooling in production...

Looking at the code here: https://github.com/mkdoc/mkout/blob/master/lib/markdown.js it does not look like it would take too much work to bring it into this repository. I do not recall if this code...

So the markdown renderer relies on some code I wrote to allow serializing and deserializing the AST to JSON which is here: https://github.com/mkdoc/mkast/blob/master/lib/node.js. I think I would need to remove...

@jgm, indeed it is not needed for the markdown renderer. I can strip it out but then I have to manage two versions of the renderer one here and one...

I need to know the type of html block type under quite a few scenarios, IIRC particularly to determine if a block is a processing instruction or not. It just...