How do a do a Windows server path in a markdown email?

In markdown the backslash is used to ‘escape’ a character. That is, if it’s a character, like ‘*’, that has meaning in Markdown but you just want the character itself you can put ‘\*’ and the processor will remove the ‘\’

In your string the first backslash is escaping the second one. If you double them up, i.e. ‘\\\\’ you should end up with two after processing.

1 Like