Section titles are now allowed inside `only` directives.

This commit is contained in:
Georg Brandl
2009-08-04 23:42:32 +02:00
parent 30a1c6b7d9
commit 640fc0ac49
2 changed files with 4 additions and 1 deletions

View File

@@ -552,7 +552,8 @@ class Only(Directive):
node.document = self.state.document
node.line = self.lineno
node['expr'] = self.arguments[0]
self.state.nested_parse(self.content, self.content_offset, node)
self.state.nested_parse(self.content, self.content_offset, node,
match_titles=1)
return [node]