34

I want to add a blankline (or add more whitespace) between heading and the image using ReStructuredText:

====
John 
====

.. image:: _static/john.JPG
   :alt: John
   :height: 300px
   :width: 400px

But I don't know how to do it?

shad0w_wa1k3r
  • 12,955
  • 8
  • 67
  • 90
xxks-kkk
  • 2,336
  • 3
  • 28
  • 48

1 Answers1

64

Use the pipe vertical line key as shown below

   ====
   John 
   ====

   |

       .. image:: _static/john.JPG
           :alt: John
           :height: 300px
           :width: 400px

That should work.

Cyberdancer91
  • 656
  • 7
  • 4