8000 Convert paragraphs divided by newlines into para items. by carlossanlop · Pull Request #170 · dotnet/api-docs-sync · GitHub
[go: up one dir, main page]

Skip to content

Convert paragraphs divided by newlines into para items. #170

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

Merged
merged 3 commits into from
Aug 6, 2024
Merged
Show file tree
Hide file tree
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
Update the filesystem tests
  • Loading branch information
carlossanlop committed Aug 6, 2024
commit 5b7e75f2ff8b4ab11549a4993d165af36c5961a2
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Type Name="MyType" FullName="MyNamespace.MyType">
<Type Name="MyType" FullName="MyNamespace.MyType">
<TypeSignature Language="DocId" Value="T:MyNamespace.MyType" />
<AssemblyInfo>
<AssemblyName>MyAssembly</AssemblyName>
Expand Down Expand Up @@ -32,11 +32,11 @@
<exception cref="T:System.EightyPercentCollisionException">Word1 Word2 Word3 Word4 Word5 Word6 Word7 Word8.</exception>
<exception cref="T:System.SeventyPercentCollisionException">Word1 Word2 Word3 Word4 Word5 Word6 Word7.</exception>
<exception cref="T:System.SixtyPercentCollisionException">Word1 Word2 Word3 Word4 Word5 Word6.</exception>
<exception cref="T:System.FiftyPercentCollisionException">Word1 Word2 Word3 Word4 Word5.

-or-

Word1 Word2 Word3 Word4 Word5 Word6 Word7 Word8 Word9 Word10.</exception>
<exception cref="T:System.FiftyPercentCollisionException">
<para>Word1 Word2 Word3 Word4 Word5.</para>
<para>-or-</para>
<para>Word1 Word2 Word3 Word4 Word5 Word6 Word7 Word8 Word9 Word10.</para>
</exception>
</Docs>
</Member>
</Members>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Type Name="MyType" FullName="MyNamespace.MyType">
<Type Name="MyType" FullName="MyNamespace.MyType">
<TypeSignature Language="DocId" Value="T:MyNamespace.MyType" />
<AssemblyInfo>
<AssemblyName>MyAssembly</AssemblyName>
Expand Down Expand Up @@ -29,19 +29,15 @@
<summary>This is the method summary.</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">This is the original text of ArgumentNullException thrown for MyMethod.</exception>
<exception cref="T:System.IndexOutOfRangeException">This is the original text of IndexOutOfRangeException thrown for MyMethod.

-or-

A proper alternative.

-or-

An improper alternative.

-or-

A somewhat proper alternative.</exception>
<exception cref="T:System.IndexOutOfRangeException">
<para>This is the original text of IndexOutOfRangeException thrown for MyMethod.</para>
<para>-or-</para>
<para>A proper alternative.</para>
<para>-or-</para>
<para>An improper alternative.</para>
<para>-or-</para>
<para>A somewhat proper alternative.</para>
</exception>
</Docs>
</Member>
</Members>
Expand Down
Loading
0