Package docutils :: Package parsers :: Package rst :: Package directives :: Module misc
[show private | hide private]
[frames | no frames]

Module docutils.parsers.rst.directives.misc

Miscellaneous directives.
Function Summary
  class_directive(name, arguments, options, content, lineno, content_offset, block_text, state, state_machine)
  directive_test_function(name, arguments, options, content, lineno, content_offset, block_text, state, state_machine)
  include(name, arguments, options, content, lineno, content_offset, block_text, state, state_machine)
Include a reST file as part of the content of this reST file.
  raw(name, arguments, options, content, lineno, content_offset, block_text, state, state_machine)
Pass through content unchanged
  replace(name, arguments, options, content, lineno, content_offset, block_text, state, state_machine)
  unicode_directive(name, arguments, options, content, lineno, content_offset, block_text, state, state_machine)
Convert Unicode character codes (numbers) to characters.

Variable Summary
SRE_Pattern unicode_pattern = (?:0x|x|x|U\+?|u)([0-9a-f]+)$|&#x([0...

Function Details

include(name, arguments, options, content, lineno, content_offset, block_text, state, state_machine)

Include a reST file as part of the content of this reST file.

raw(name, arguments, options, content, lineno, content_offset, block_text, state, state_machine)

Pass through content unchanged

Content is included in output based on type argument

Content may be included inline (content section of directive) or imported from a file or url.

unicode_directive(name, arguments, options, content, lineno, content_offset, block_text, state, state_machine)

Convert Unicode character codes (numbers) to characters. Codes may be decimal numbers, hexadecimal numbers (prefixed by 0x, x, \x, U+, u, or \u; e.g. U+262E), or XML-style numeric character entities (e.g. ☮). Text following ".." is a comment and is ignored. Spaces are ignored, and any other text remains as-is.

Variable Details

unicode_pattern

Type:
SRE_Pattern
Value:
(?:0x|x|x|U\+?|u)([0-9a-f]+)$|&#x([0-9a-f]+);$                       

Generated by Epydoc 2.0 on Tue Jul 22 05:31:30 2003 http://epydoc.sf.net