Aria Buckles

Results 22 comments of Aria Buckles

No, footnotes are a non-standard markdown extension and aren't supported, sorry!

Hey, I maintain simple-markdown but don't do that much with react-native-markdown (just perusing the issues today ^_^). The main difference between simple-markdown and Gruber's markdown is that simple-markdown requires an...

Not on me to approve, but the code looks good to me. I haven't tested it but am happy to if it would be helpful.

Hi, the parser's rules aren't always as strict as they could be about block (View) vs non-block (Text) elements. Could you post an example of what markdown you're sending in?...

I've seen similar bugs a few times and my guess is it's probably the italics/em rule doing too much backtracking (here's an issue that had a potentially similar problem in...

Hi fimkap, This sounds like it's likely a react-native bug rather than a markdown bug, especially if this repro'd with a different package (although I'm interested in which package: if...

You should be able to do that with only your rules and not spreading the default, with one addition: you'll need the `text` rule to specify what happens to text...

Hi! Thanks for trying the typescript support! Sorry for the late response! Regarding `markdown.htmlFor` & `markdown.ruleOutput`, there's a new `markdown.outputFor` that should handle both of those cases more simply, which...

Hi @yoshikischmitz ! What you're reporting definitely happens, and I'd like to see if we can address it. Could you explain a little more about your use case? Are you...

Hi again @yoshikischmitz ! Thanks, that makes sense. I'd recommend writing a custom outputter that does this AST transformation to join the nodes. This is somewhat clunky right now, but...