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

feat: experimental support for markdown output #9232

Merged
merged 14 commits into from
Sep 22, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
use soft break for info
  • Loading branch information
yufeih committed Sep 21, 2023
commit a7cbf8654ea2dfd57ed3088a38f4acd124ec3f87
4 changes: 2 additions & 2 deletions src/Docfx.Dotnet/MarkdownFormatter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -392,8 +392,8 @@ void EnumFields()

void Info()
{
sb.AppendLine($"_Namespace:_ {FullLink(symbol.ContainingNamespace)}").AppendLine();
sb.AppendLine($"_Assembly:_ {symbol.ContainingAssembly.Name}.dll").AppendLine();
sb.AppendLine($"__Namespace:__ {FullLink(symbol.ContainingNamespace)} ");
sb.AppendLine($"__Assembly:__ {symbol.ContainingAssembly.Name}.dll").AppendLine();
}

void Summary(XmlComment? comment)
Expand Down