Skip to content
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
separate ns and assembly as two lines
  • Loading branch information
yufeih committed Sep 21, 2023
commit 51dbd80f4df1e3c011b68e57e8da2dfc5ee3de2d
2 changes: 1 addition & 1 deletion src/Docfx.Dotnet/MarkdownFormatter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ void EnumFields()

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

Expand Down