diff options
| author | goodger <goodger@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2005-10-28 16:12:56 +0000 |
|---|---|---|
| committer | goodger <goodger@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2005-10-28 16:12:56 +0000 |
| commit | 5eaa35732246484d010b80d2848eba8cd77158d8 (patch) | |
| tree | 0b195e0c6680f2e84fb7a8c64a0c3e960a191e87 /docutils/nodes.py | |
| parent | 1c603453f1653f485cf9246a50f5cb817cc7408c (diff) | |
| download | docutils-5eaa35732246484d010b80d2848eba8cd77158d8.tar.gz | |
added the "container" element & directive, a generic container
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@3963 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'docutils/nodes.py')
| -rw-r--r-- | docutils/nodes.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docutils/nodes.py b/docutils/nodes.py index 195293a9e..b45cd1bcf 100644 --- a/docutils/nodes.py +++ b/docutils/nodes.py @@ -1188,6 +1188,7 @@ class transition(Structural, Element): pass class paragraph(General, TextElement): pass class compound(General, Element): pass +class container(General, Element): pass class bullet_list(Sequential, Element): pass class enumerated_list(Sequential, Element): pass class list_item(Part, Element): pass @@ -1410,7 +1411,7 @@ node_class_names = """ authors block_quote bullet_list caption caution citation citation_reference classifier colspec comment - compound contact copyright + compound contact container copyright danger date decoration definition definition_list definition_list_item description docinfo doctest_block document emphasis entry enumerated_list error |
