⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 en.py

📁 Requirement =====================================================================================
💻 PY
字号:
# Author: David Goodger# Contact: goodger@users.sourceforge.net# Revision: $Revision: 4229 $# Date: $Date: 2005-12-23 00:46:16 +0100 (Fri, 23 Dec 2005) $# Copyright: This module has been placed in the public domain.# New language mappings are welcome.  Before doing a new translation, please# read <http://docutils.sf.net/docs/howto/i18n.html>.  Two files must be# translated for each language: one in docutils/languages, the other in# docutils/parsers/rst/languages."""English-language mappings for language-dependent features ofreStructuredText."""__docformat__ = 'reStructuredText'directives = {      # language-dependent: fixed      'attention': 'attention',      'caution': 'caution',      'danger': 'danger',      'error': 'error',      'hint': 'hint',      'important': 'important',      'note': 'note',      'tip': 'tip',      'warning': 'warning',      'admonition': 'admonition',      'sidebar': 'sidebar',      'topic': 'topic',      'line-block': 'line-block',      'parsed-literal': 'parsed-literal',      'rubric': 'rubric',      'epigraph': 'epigraph',      'highlights': 'highlights',      'pull-quote': 'pull-quote',      'compound': 'compound',      'container': 'container',      #'questions': 'questions',      'table': 'table',      'csv-table': 'csv-table',      'list-table': 'list-table',      #'qa': 'questions',      #'faq': 'questions',      'meta': 'meta',      #'imagemap': 'imagemap',      'image': 'image',      'figure': 'figure',      'include': 'include',      'raw': 'raw',      'replace': 'replace',      'unicode': 'unicode',      'date': 'date',      'class': 'class',      'role': 'role',      'default-role': 'default-role',      'title': 'title',      'contents': 'contents',      'sectnum': 'sectnum',      'section-numbering': 'sectnum',      'header': 'header',      'footer': 'footer',      #'footnotes': 'footnotes',      #'citations': 'citations',      'target-notes': 'target-notes',      'restructuredtext-test-directive': 'restructuredtext-test-directive'}"""English name to registered (in directives/__init__.py) directive namemapping."""roles = {    # language-dependent: fixed    'abbreviation': 'abbreviation',    'ab': 'abbreviation',    'acronym': 'acronym',    'ac': 'acronym',    'index': 'index',    'i': 'index',    'subscript': 'subscript',    'sub': 'subscript',    'superscript': 'superscript',    'sup': 'superscript',    'title-reference': 'title-reference',    'title': 'title-reference',    't': 'title-reference',    'pep-reference': 'pep-reference',    'pep': 'pep-reference',    'rfc-reference': 'rfc-reference',    'rfc': 'rfc-reference',    'emphasis': 'emphasis',    'strong': 'strong',    'literal': 'literal',    'named-reference': 'named-reference',    'anonymous-reference': 'anonymous-reference',    'footnote-reference': 'footnote-reference',    'citation-reference': 'citation-reference',    'substitution-reference': 'substitution-reference',    'target': 'target',    'uri-reference': 'uri-reference',    'uri': 'uri-reference',    'url': 'uri-reference',    'raw': 'raw',}"""Mapping of English role names to canonical role names for interpreted text."""

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -