47 lines
1.2 KiB
Python
47 lines
1.2 KiB
Python
# Author: David Goodger
|
|
# Contact: goodger@users.sourceforge.net
|
|
# Revision: $Revision$
|
|
# Date: $Date$
|
|
# Copyright: This module has been placed in the public domain.
|
|
|
|
"""
|
|
English-language mappings for language-dependent features of
|
|
reStructuredText.
|
|
"""
|
|
|
|
__docformat__ = 'reStructuredText'
|
|
|
|
|
|
directives = {
|
|
'attention': 'attention',
|
|
'caution': 'caution',
|
|
'danger': 'danger',
|
|
'error': 'error',
|
|
'hint': 'hint',
|
|
'important': 'important',
|
|
'note': 'note',
|
|
'tip': 'tip',
|
|
'warning': 'warning',
|
|
'topic': 'topic',
|
|
'line-block': 'line-block',
|
|
'parsed-literal': 'parsed-literal',
|
|
#'questions': 'questions',
|
|
#'qa': 'questions',
|
|
#'faq': 'questions',
|
|
'meta': 'meta',
|
|
#'imagemap': 'imagemap',
|
|
'image': 'image',
|
|
'figure': 'figure',
|
|
'include': 'include',
|
|
'raw': 'raw',
|
|
'replace': 'replace',
|
|
'contents': 'contents',
|
|
'sectnum': 'sectnum',
|
|
'section-numbering': 'sectnum',
|
|
'target-notes': 'target-notes',
|
|
#'footnotes': 'footnotes',
|
|
#'citations': 'citations',
|
|
'restructuredtext-test-directive': 'restructuredtext-test-directive'}
|
|
"""English name to registered (in directives/__init__.py) directive name
|
|
mapping."""
|