Open
Description
markdown 7.1.0
- original report: README.md is rendered incorrectly on pub.dev and in API docs core#398
reproduce markdown:
The [`Characters`][Characters] class exposes a string
Example:
```dart
{}
```
[ByteBuffer]: https://api.dart.dev/stable/2.0.0/dart-typed_data/ByteBuffer-class.html "ByteBuffer class"
[Characters]: https://pub.dev/documentation/characters/latest/characters/Characters-class.html "Characters class"
dart run markdown --extension-set GitHubWeb
renders an extra content at the end:
<p>[ByteBuffer]: <a href="https://api.dart.dev/stable/2.0.0/dart-typed_data/ByteBuffer-class.html">https://api.dart.dev/stable/2.0.0/dart-typed_data/ByteBuffer-class.html</a> "ByteBuffer class"
[Characters]: <a href="https://pub.dev/documentation/characters/latest/characters/Characters-class.html">https://pub.dev/documentation/characters/latest/characters/Characters-class.html</a> "Characters class"</p>
Removing the unused ByteBuffer
reference line fixes the rendering.