Server IP : 66.29.132.122 / Your IP : 18.117.254.221 Web Server : LiteSpeed System : Linux business142.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : admazpex ( 531) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/proc/thread-self/root/opt/imunify360/venv/lib/python3.11/site-packages/docutils/parsers/rst/languages/ |
Upload File : |
# $Id: en.py 9120 2022-09-13 10:24:30Z milde $ # Author: David Goodger <goodger@python.org> # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please # read <https://docutils.sourceforge.io/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 of reStructuredText. """ __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', # advice/caveat/remark, not reprimand 'sidebar': 'sidebar', 'topic': 'topic', 'line-block': 'line-block', 'parsed-literal': 'parsed-literal', 'code': 'code', 'code-block': 'code', 'sourcecode': 'code', 'math': 'math', 'rubric': 'rubric', 'epigraph': 'epigraph', 'highlights': 'highlights', 'pull-quote': 'pull-quote', 'compound': 'compound', 'container': 'container', 'table': 'table', 'csv-table': 'csv-table', 'list-table': 'list-table', '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'} """Mapping of English directive name to registered directive names Cf. https://docutils.sourceforge.io/docs/ref/rst/directives.html and `_directive_registry` in ``directives/__init__.py``. """ roles = { # language-dependent: fixed 'abbreviation': 'abbreviation', 'ab': 'abbreviation', 'acronym': 'acronym', 'ac': 'acronym', 'code': 'code', 'emphasis': 'emphasis', 'literal': 'literal', 'math': 'math', 'pep-reference': 'pep-reference', 'pep': 'pep-reference', 'rfc-reference': 'rfc-reference', 'rfc': 'rfc-reference', 'strong': 'strong', 'subscript': 'subscript', 'sub': 'subscript', 'superscript': 'superscript', 'sup': 'superscript', 'title-reference': 'title-reference', 'title': 'title-reference', 't': 'title-reference', 'raw': 'raw', # the following roles are not implemented in Docutils 'index': 'index', 'i': 'index', 'anonymous-reference': 'anonymous-reference', 'citation-reference': 'citation-reference', 'footnote-reference': 'footnote-reference', 'named-reference': 'named-reference', 'substitution-reference': 'substitution-reference', 'uri-reference': 'uri-reference', 'uri': 'uri-reference', 'url': 'uri-reference', 'target': 'target', } """Mapping of English role names to canonical role names for interpreted text. Cf. https://docutils.sourceforge.io/docs/ref/rst/roles.html """