Claus Wahlers
                                            Claus Wahlers
                                        
                                    This might be fixed with https://github.com/mastodon/mastodon/pull/18817
Yes.
Interesting, this is an undocumented fill style. What kind of fill are you using in your tweened shapes?
Looks like you're trying to parse a LZMA-compressed SWF. This requires Flash Player 11.4 beta (SWF version 17)
~~Ausserdem ist onCmp eine asynchrone Funktion, der Rest aber nicht. tagSpr wird deshalb erst später instanziiert, mit was auch immer, und ist bis dahin nicht definiert.~~ OK das war Blödsinn....
> how do you render different `` depending if parent is `` or ``? Can you tell me more about what you want to achieve? There is only one kind...
To return a custom component for level 2 headings you need this: ```js [NODE_HEADING]: (children, { level }) => { if (level === 2) { return {children}; } else {...
Regarding your second question, you could also try this: ```js [NODE_LI]: (children) => { if (Children.count(children) === 1) { const child = Children.toArray(children)[0]; if (child.type === "p") { return {child.props.children};...
Hmm, that code looks good to me. Is that heading resolver executed at all?
As i said, your code looks good, and it would be helpful if you could find out if that `NODE_HEADING` resolver is actually executed, for example by placing some console.log's...