-
Notifications
You must be signed in to change notification settings - Fork 885
Closed
Milestone
Description
Using docfx 1.7.1 on Windows, with dnx.
docfx.json:
{
"metadata": [ { "src": [{ "files": "project.json" }], "dest": "obj/api" } ],
"build": {
"content": [{
"files": [ "**/*.yml" ],
"cwd": "obj/api",
"dest": "api"
}],
"overwrite": "extra.md",
"dest": "_site"
}
}project.json:
{
"version": "1.0.0",
"frameworks": { "net451": { } }
}DocfxTest.cs:
namespace Foo
{
/// <summary>Just a demo</summary>
public class Bar {}
}extra.md - not the lack of a blank line after the second "---"
---
uid: Foo.Bar
---
abcThe resulting HTML file for Foo.Bar contains:
<div class="markdown level0 summary"><p>Just a demo</p>
</div>
<div class="markdown level0 conceptual"><p>bc</p>
</div>Note how the a of abc has been removed.
Reactions are currently unavailable