software rst readthedocs readdoc example python python-sphinx restructuredtext

python - rst - Cómo insertar una línea en blanco usando reStructuredText/Sphinx



sphinx search (1)

Quiero agregar una línea en blanco (o agregar más espacios en blanco) entre el encabezado y la imagen usando ReStructuredText:

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

Pero no sé cómo hacerlo?


Use la llave de la línea vertical del tubo como se muestra a continuación

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

Eso debería funcionar.