Hi Nathann, On 18 Nov., 11:06, Nathann Cohen <[email protected]> wrote: > Hellooooo !! > > Nonono, I want the docstring to be seen by sphinx, only it is not and I > would like it to be otherwise ! When I add this "And here is the second > one" in the middle of the document, it just does not appear in the HTML > documentation ! :-/
If you write (with line numbers for better reference): 1 """ 2 some text 3 4 def bla(asdf): 5 """ 6 documentation 7 """ 8 def blubb(fdsa): 9 """ 10 more documentation 11 """ 12 """ then the string that starts in the first line ends in the fifth line. Is that the problem, perhaps? It could be solved: In lines 5, 7, 9 and 11 replace """ by '''. Cheers, Simon -- To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/sage-support URL: http://www.sagemath.org
