0

This markdown manpage:

%frobnicator(3)

# NAME
**frobnicator** — frobnicates the frobs

# OPTIONS
  **-a** *a*: the letter a \
  **-b** *b*: the letter b \
  \
  **-c** *c*: the letter c \

renders (pandoc -s --to=man frobnicator.md |PAGER=cat man -l -) to:

frobnicator(3)                                                  frobnicator(3)



NAME
       frobnicator — frobnicates the frobs

OPTIONS
       -a a: the letter a
       -b b: the letter b
       -c c: the letter c
                                                                frobnicator(3)

How do I put an empty line between -b and -c?

Petr Skocik
  • 58,047
  • 6
  • 95
  • 142

1 Answers1

0

What about:

%frobnicator(3)

# NAME
**frobnicator** — frobnicates the frobs

# OPTIONS

  **-a** *a*: the letter a \
  **-b** *b*: the letter b

  **-c** *c*: the letter c \

Edit: my only other idea:

%frobnicator(3)

# NAME
**frobnicator** — frobnicates the frobs

# OPTIONS

|  **-a** *a*: the letter a \
|  **-b** *b*: the letter b \
|
|  **-c** *c*: the letter c \
Ben Quigley
  • 727
  • 4
  • 18