Lines Matching full:content
71 def c_span(name, rawtext, text, lineno, inliner, options=None, content=None): argument
76 content = content if content is not None else []
82 def r_span(name, rawtext, text, lineno, inliner, options=None, content=None): argument
87 content = content if content is not None else []
114 if not self.content:
116 'The "%s" directive is empty; content required.' % self.name,
123 self.state.nested_parse(self.content, self.content_offset, node)
219 'Error parsing content block for the "%s" directive: '
288 cspan, rspan, content = row[-1]
289 row[-1] = (cspan + x, rspan, content)
304 content = col[2][0].astext()
305 if len (content) > 30:
306 content = content[:30] + "..."
308 % (col[0], col[1], content))
337 'Error parsing content block for the "%s" directive: '