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
If I have a complex type like Promise<Object>, it is passed verbatim to the Markdown layer as **Promise.<Object>** - this will be interpreted as an HTML tag <object>, and won't be rendered correctly.
Escaping this opening bracked should solve this (ie, **Promise.\<Object>**)
It seems that it's only partially fixed: if you have a complex type like Promise<Object[]> it becomes **Promise.\<Array.<Object>>** where you still end up with a HTML tag <Object>.
Additional escaping would solve this: **Promise.\<Array.\<Object>>**
If I have a complex type like
Promise<Object>
, it is passed verbatim to the Markdown layer as**Promise.<Object>**
- this will be interpreted as an HTML tag<object>
, and won't be rendered correctly.Escaping this opening bracked should solve this (ie,
**Promise.\<Object>**
)Fixed by #40
The text was updated successfully, but these errors were encountered: