Sam Nguyen

Results 17 comments of Sam Nguyen

Hi @bradberger, yes I'd be happy to merge that PR 😄

Hi @alanguir, Which version of MMD has those options? I don't see those flags in the version I am currently using for node-multimarkdown. Here is the source I am looking...

Ah I see. Yeah, this is still using peg-multimarkdown so it doesn't have those extra flags. You'd have to upgrade the MMD library to https://github.com/fletcher/MultiMarkdown-4

FYI gentlemen I have a working port of MMD4 in JS, compiled using Emscripten here: https://github.com/dtjm/plaintext.js. It's not totally polished yet (documentation needs to be fixed) but it works. The...

@thinkingserious which link did you want us to review?

Could you do something like this? ```go func getID(r ResponseType) int64 { g, ok := r.(interface{ GetID() int64 }) if ok { return g.GetID() } return 0 } ```

I have a draft PR for this here, wondering if this would be the right approach? https://github.com/ogen-go/ogen/pull/1535