Closed
Description
When converting from man to gfm, the roff snippet \fB--c \fI<file>
produces the markdown snippet **--c ***\<file\>*
. This will not work when adding it to a Github wiki because the space character after 'c' is not proper markdown according to my research. The asterisks closing boldface should be attached to the letter 'c', so it should be **--c** *\<file\>*
. Note that the space is now after the asterisks closing boldface. I confirmed this also happens with "Try pandoc". The same problem exists with a space after the opening boldface as in \fB --c \fI<file>
which will generate ** --c ***\<file\>*
.