本文整理汇总了Python中docutils.parsers.rst.states.RSTStateMachine方法的典型用法代码示例。如果您正苦于以下问题:Python states.RSTStateMachine方法的具体用法?Python states.RSTStateMachine怎么用?Python states.RSTStateMachine使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类docutils.parsers.rst.states
的用法示例。
在下文中一共展示了states.RSTStateMachine方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: parse
# 需要导入模块: from docutils.parsers.rst import states [as 别名]
# 或者: from docutils.parsers.rst.states import RSTStateMachine [as 别名]
def parse(self, inputstring, document):
"""Parse `inputstring` and populate `document`, a document tree."""
self.setup_parse(inputstring, document)
self.statemachine = states.RSTStateMachine(
state_classes=self.state_classes,
initial_state=self.initial_state,
debug=document.reporter.debug_flag)
inputlines = docutils.statemachine.string2lines(
inputstring, tab_width=document.settings.tab_width,
convert_whitespace=True)
self.statemachine.run(inputlines, document, inliner=self.inliner)
self.finish_parse()
示例2: wideformat
# 需要导入模块: from docutils.parsers.rst import states [as 别名]
# 或者: from docutils.parsers.rst.states import RSTStateMachine [as 别名]
def wideformat():
state = Body(RSTStateMachine(None, None))
#state = Mock()
lineno = 1
app = None
return wide_format.WideFormat(state, lineno, app)
示例3: parse
# 需要导入模块: from docutils.parsers.rst import states [as 别名]
# 或者: from docutils.parsers.rst.states import RSTStateMachine [as 别名]
def parse(self, inputstring, document):
"""Parse `inputstring` and populate `document`, a document tree."""
self.setup_parse(inputstring, document)
self.statemachine = states.RSTStateMachine(
state_classes=self.state_classes,
initial_state=self.initial_state,
debug=document.reporter.debug_flag)
inputlines = docutils.statemachine.string2lines(
inputstring, tab_width=document.settings.tab_width,
convert_whitespace=True)
self.statemachine.run(inputlines, document, inliner=self.inliner)
# restore the "default" default role after parsing a document
if '' in roles._roles:
del roles._roles['']
self.finish_parse()