-
Notifications
You must be signed in to change notification settings - Fork 78
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
Fix code snippets; more Markdown, less HTML #231
Conversation
serge-s
commented
Oct 2, 2023
- wrap code fragments in triple backticks where needed
- add missing xml keyword to enable syntax highlighting
- replace HTML tags with text equivalents where needed to fix issues like this:
```xml | ||
<Property Id="SHDOCVW"> | ||
<DirectorySearch Id="WinDir" Path="[WindowsFolder]"> | ||
<DirectorySearch Id="Media" Path="Media"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be indented.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Corrected.
```xml | ||
<Property Id="NGEN2DIR"> | ||
<DirectorySearch Id="Windows" Path="[WindowsFolder]"> | ||
<DirectorySearch Id="MS.NET" Path="Microsoft.NET"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Another indent.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Corrected too.
```xml | ||
<Property Id="NGEN2DIR"> | ||
<DirectorySearch Id="Windows" Path="[WindowsFolder]"> | ||
<DirectorySearch Id="MS.NET" Path="Microsoft.NET"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Several indents here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just notice it's correctly rendered here: https://documentation.help/WiX/parentdirectorysearch.htm
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed.
Other than whitespace, looks good. |
Thanks! |