-
Notifications
You must be signed in to change notification settings - Fork 128
Closed
Labels
P3A lower priority bug or feature requestA lower priority bug or feature requesttype-enhancementA request for a change that isn't a bugA request for a change that isn't a bug
Description
When I use the dartdoc --format=md
command on the following example,
/// A class that uses a markdown example.
///
/// ```dart
/// Foo.example()
/// ```
class Foo {
[...]
}
The following "markdown" is generated:
# Foo
<p>A class that uses a markdown example.</p>
<pre class="language-dart"><code class="language-dart">Foo.example()
</code></pre>
This however is just a mix between Markdown and HTML. I understand that some markdown renderers are capable of rendering HTML, I'd rather have the markdown format generate actual markdown instead, like the following result:
# Foo
A class that uses a markdown example.
'''dart
Foo.example()
'''
srawlins and kalucky0
Metadata
Metadata
Assignees
Labels
P3A lower priority bug or feature requestA lower priority bug or feature requesttype-enhancementA request for a change that isn't a bugA request for a change that isn't a bug