in src/PSDocs/Processor/Markdown/MarkdownProcessor.cs [337:351]
private static void StartColumn(MarkdownProcessorContext context, int index, int last, bool useEdgePipe, bool padBeforePipe, bool padAfterPipe)
{
if (index > 0 && padBeforePipe)
{
context.WriteSpace();
}
if (index > 0 || useEdgePipe)
{
context.WritePipe();
}
if (padAfterPipe && useEdgePipe || index > 0 && padAfterPipe)
{
context.WriteSpace();
}
}