We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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 --- abc
The resulting HTML file for Foo.Bar contains:
Foo.Bar
<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.
a
abc
The text was updated successfully, but these errors were encountered:
Fix #265: Index range bugs in YamlHeaderParser
5f69ee3
e4cbdb3
qinezh
No branches or pull requests
Using docfx 1.7.1 on Windows, with dnx.
docfx.json:
project.json:
DocfxTest.cs:
extra.md - not the lack of a blank line after the second "---"
The resulting HTML file for
Foo.Bar
contains:Note how the
a
ofabc
has been removed.The text was updated successfully, but these errors were encountered: