Lines Matching full:content
81 def c_span(name, rawtext, text, lineno, inliner, options=None, content=None): argument
86 content = content if content is not None else []
92 def r_span(name, rawtext, text, lineno, inliner, options=None, content=None): argument
97 content = content if content is not None else []
124 if not self.content:
126 'The "%s" directive is empty; content required.' % self.name,
133 self.state.nested_parse(self.content, self.content_offset, node)
229 'Error parsing content block for the "%s" directive: '
298 cspan, rspan, content = row[-1]
299 row[-1] = (cspan + x, rspan, content)
314 content = col[2][0].astext()
315 if len (content) > 30:
316 content = content[:30] + "..."
318 % (col[0], col[1], content))
347 'Error parsing content block for the "%s" directive: '