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
Fix doc attribute parsing to properly handle block comments
The existing parsing logic is flawed, as it concatenates consecutive
lines, e.g. this:
/**
This is the first paragraph.
*/
...becomes this:
/**
* # Heading This is the first paragraph.
*/
Lists are also effected.
0 commit comments