- Example > For example
- must a > must be a
- (missing end dot added).
Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com>
- As requested in issue ticket #9449
(**<strong> tags causing issue in localized articles**),
this Pull Request aims to remove HTML tags known to cause layout and
readability issues in the MS Docs document pages, Frame Overflow being
a frequent and obvious layout-breaking issue in translated articles.
Changes proposed:
- Replace HTML tag <strong> </strong> with its MD equivalent ** **
- Replace single asterisk * with underscore _ (when combined with **)
- Simplify usage of bold formatting (** **) to only the outer pair
- Replace HTML tag <em> </em> with MarkDown underscore _ _
Whitespace changes:
- Remove redundant end-of-line (EOL) blanks (trailing space)
- Normalize spacing in numbered lists and bullet point lists to 1 space
- Replace end-of-file (EOF) consecutive blank lines with 1 NewLine
- Normalize layout spacing in MarkDown tables (consistency)
- Normalize layout to 1 blank line after H2, H3, H4 headings
- Allow up to 2 blank lines spacing (not 3 or more), ex. H1 page title
Closes#9449
From issue ticket #8934 (**conflicting recommendations, likely typo**) :
> You say this. "Many devices now come with large internal drives. You can set Delivery Optimization to take better advantage of this space (especially if you have large numbers of devices) by changing the minimum file size to cache. If you have more than 30 devices in your local network or group, change it from the default 50 MB to 10 MB. If you have more than 100 devices (and are running Windows 10, version 1803 or later), set this value to 1 MB.
>
> To do this in Group Policy, go to Configuration\Policies\Administrative Templates\Windows Components\Delivery Optimization and set Minimum Peer Caching Content File Size to 100 (if you have more than 30 devices) or 1 (if you have more than 100 devices)."
>
> For the 30 device case, in the first paragraph, the recommendation is 10 MB, but in the second paragraph the instructions say set it to 100 MB. This is seriously confusing.
Thanks to steve-pence for reporting this value typo issue.
Proposed change:
- Change the recommended value "set Minimum Peer Caching Content File Size to 100" ==>> 10 (confirmed correct value)
Codestyle & Whitespace changes:
- Add missing MarkDown indent marker compatibility spacing (2 occurrences)
- Simplify numbers of blank lines paragraph spacing (no change in Rich text view and HTML conversion)
- Update name casing for DoSvc (Delivery Optimization Service)
Closes#8934