I'm working on some documentation that includes function signatures,  
and I need to ship it as a PDF.  I have this in my rst file:

.. function:: myFunc(token, imageId)

    Function description

    :param token: The token.
    :type token: string
    :param imageId: Identifier for the image.
    :type imageId: string
    :rtype: :class:`Image`



The HTML output looks great, and the list of parameters is aligned  
along the bullets:

myFunc(token, imageId)

     Function description
     Parameters:         * token (string) – The token.
                  * imageId (string) – Identifier for the image.

     Return type: Image



The PDF mis-aligns the list of parameters so I get something more like:

myFunc(token, imageId)

     Function description
     Parameters:        * token (string) – The token.
         * imageId (string) – Identifier for the image.

     Return type: Image

(Notice how the 2 bullets in the list don't align vertically.)

Is anyone else seeing this problem?

Thanks,
Doug


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sphinx-dev" group.
To post to this group, send email to sphinx-dev@googlegroups.com
To unsubscribe from this group, send email to 
sphinx-dev+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/sphinx-dev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to