Skip to content
New issue

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

Add API document generation target projects. #8945

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion docs/README.md

This file was deleted.

3 changes: 1 addition & 2 deletions docs/docfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
"src": [
{
"files": [
"src/Docfx.App/*.csproj",
"src/Docfx.Dotnet/*.csproj"
"src/**/*.csproj"
],
"src": "../"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public static IEnumerable<object> Dependencies
}

/// <summary>
/// Creates a scope for calling <see cref="Markdig.Markdown.ToHtml(string, Markdig.MarkdownPipeline)"/>.
/// Creates a scope for calling <see cref="Markdig.Markdown.ToHtml(string, Markdig.MarkdownPipeline?, Markdig.MarkdownParserContext?)"/>.
/// </summary>
public static IDisposable PushFile(object file)
{
Expand All @@ -79,7 +79,7 @@ public static IDisposable PushFile(object file)
}

/// <summary>
/// Creates a scope for calling <see cref="Markdig.Markdown.ToHtml(string, Markdig.MarkdownPipeline)"/>
/// Creates a scope for calling <see cref="Markdig.Markdown.ToHtml(string, Markdig.MarkdownPipeline?, Markdig.MarkdownParserContext?)"/>
/// when processing a markdown inclusion inside <see cref="HtmlInclusionBlockRenderer"/> and <see cref="HtmlInclusionInlineRenderer"/>.
/// </summary>
public static IDisposable PushInclusion(object file)
Expand Down