-
Notifications
You must be signed in to change notification settings - Fork 52
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
Newlines are not handled appropriately #96
Comments
Hi, @astrohart How does your document file (the .xml file) look like? |
Let me upload a sample, here you go: (I had to rename it with a .xml.txt extension otherwise GitHub won't allow the file to be uploaded) One of the entries looks like this <member name="P:MFR.Engines.ConsoleOperationEngine.Type">
<summary>
Gets a <see cref="T:MFR.Engines.Constants.OperationEngineType" /> enumeration
value that describes what type of operation engine this is.
</summary>
<remarks>
Child classes must implement this property.
</remarks>
</member> Notice the line break after I recommend you do something such as |
For reference, I am attaching the corresponding |
I have a project I am building,
DummyFormsApp
. It hasVsxmd
1.4.5 installed.I have XML comment text in the
DummyFormsApp.xml
file such as:It is this way because I also utilize JetBrains ReSharper and I have it programmed to make all lines XX chars long and no longer (code style). So it hard wraps longer lines, including XML doc comments. I prefer it this way.
However, it produces
DummyFormsApp.md
content as shown:This has line breaks etc. in it. You need to replace all
(blank spaces) during processing.
Environment.NewLine
occurrences in the incoming XML documentation file withThe current code is preserving line breaks and this is making the
.md
not be formatted correctly.The text was updated successfully, but these errors were encountered: