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
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