當前位置: 首頁>>代碼示例>>Python>>正文


Python states.RSTStateMachine方法代碼示例

本文整理匯總了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() 
開發者ID:skarlekar,項目名稱:faces,代碼行數:14,代碼來源:__init__.py

示例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) 
開發者ID:lnoor,項目名稱:sphinx-jsonschema,代碼行數:9,代碼來源:test_overall.py

示例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() 
開發者ID:aws-samples,項目名稱:aws-builders-fair-projects,代碼行數:17,代碼來源:__init__.py


注:本文中的docutils.parsers.rst.states.RSTStateMachine方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。