##// END OF EJS Templates
Fix some Sphinx warnings with autogenerated config docs
Thomas Kluyver -
Show More
@@ -195,7 +195,7 b' class InteractiveShellApp(Configurable):'
195 195 )
196 196 pylab_import_all = Bool(True, config=True,
197 197 help="""If true, IPython will populate the user namespace with numpy, pylab, etc.
198 and an 'import *' is done from numpy and pylab, when using pylab mode.
198 and an ``import *`` is done from numpy and pylab, when using pylab mode.
199 199
200 200 When False, pylab mode should not import any names into the user namespace.
201 201 """
@@ -130,15 +130,18 b" class ConsoleWidget(MetaQObjectHasTraits('NewBase', (LoggingConfigurable, QtGui."
130 130 help="""
131 131 The type of paging to use. Valid values are:
132 132
133 'inside' : The widget pages like a traditional terminal.
134 'hsplit' : When paging is requested, the widget is split
135 horizontally. The top pane contains the console, and the
136 bottom pane contains the paged text.
137 'vsplit' : Similar to 'hsplit', except that a vertical splitter
138 used.
139 'custom' : No action is taken by the widget beyond emitting a
140 'custom_page_requested(str)' signal.
141 'none' : The text is written directly to the console.
133 'inside'
134 The widget pages like a traditional terminal.
135 'hsplit'
136 When paging is requested, the widget is split horizontally. The top
137 pane contains the console, and the bottom pane contains the paged text.
138 'vsplit'
139 Similar to 'hsplit', except that a vertical splitter is used.
140 'custom'
141 No action is taken by the widget beyond emitting a
142 'custom_page_requested(str)' signal.
143 'none'
144 The text is written directly to the console.
142 145 """)
143 146
144 147 font_family = Unicode(config=True,
@@ -38,7 +38,7 b' def document_config_options(classes):'
38 38
39 39 help = trait.get_metadata('help')
40 40 if help is not None:
41 help = '\n'.join(wrap_paragraphs(help, 76))
41 help = '\n\n'.join(wrap_paragraphs(help, 76))
42 42 lines.append(indent(help, 4))
43 43 else:
44 44 lines.append(' No description')
General Comments 0
You need to be logged in to leave comments. Login now