Fix a pipe char in the table formatting (#3714)

Set the proper escaping for a pipe char inside of a cell text in Markdown.
This commit is contained in:
Dmitrii Evdokimov 2017-05-08 08:38:07 +03:00 committed by Jason Shirk
parent 8d744f2517
commit 5938688d86

View file

@ -99,7 +99,7 @@ Note that all bash commands should continue working on PowerShell session.
| rm test.txt |Remove-Item test.txt |Delete a file
| rm -r <folderName> |Remove-Item <folderName> -Recurse |Delete a folder
| find -name build* |Get-ChildItem build* -Recurse |Find a file or folder starting with 'build'
| grep -Rin "sometext" --include="*.cs" |Get-ChildItem -Recurse -Filter *.cs <br> &#124; Select-String -Pattern "sometext" | Recursively case-insensitive search for text in files
| grep -Rin "sometext" --include="*.cs" |Get-ChildItem -Recurse -Filter *.cs <br> \| Select-String -Pattern "sometext" | Recursively case-insensitive search for text in files
Recommended Training and Reading