当前位置: 首页>>代码示例>>Python>>正文


Python FormatterBase.preformatted方法代码示例

本文整理汇总了Python中MoinMoin.formatter.FormatterBase.preformatted方法的典型用法代码示例。如果您正苦于以下问题:Python FormatterBase.preformatted方法的具体用法?Python FormatterBase.preformatted怎么用?Python FormatterBase.preformatted使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在MoinMoin.formatter.FormatterBase的用法示例。


在下文中一共展示了FormatterBase.preformatted方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: preformatted

# 需要导入模块: from MoinMoin.formatter import FormatterBase [as 别名]
# 或者: from MoinMoin.formatter.FormatterBase import preformatted [as 别名]
 def preformatted(self, on, **kw):
     FormatterBase.preformatted(self, on)
     snip = u'---%<'
     snip = snip + (u'-' * (78 - len(snip)))
     if on:
         return u'\n' + snip + u'\n'
     else:
         return snip + u'\n'
开发者ID:steveyen,项目名称:moingo,代码行数:10,代码来源:text_plain.py

示例2: preformatted

# 需要导入模块: from MoinMoin.formatter import FormatterBase [as 别名]
# 或者: from MoinMoin.formatter.FormatterBase import preformatted [as 别名]
 def preformatted(self, on, **kw):
     # Maintain the accessible flag `in_pre`
     FormatterBase.preformatted(self, on)
     if on:
         # TODO Minmized styles should be supported
         result = self._output_EOL_BLK(u"::")
         self._indentation += 3
         return result
     else:
         self._indentation -= 3
         return self._output_EOL_BLK()
开发者ID:ismaelbej,项目名称:moin2rst,代码行数:13,代码来源:text_x-rst.py

示例3: preformatted

# 需要导入模块: from MoinMoin.formatter import FormatterBase [as 别名]
# 或者: from MoinMoin.formatter.FormatterBase import preformatted [as 别名]
 def preformatted(self, on, **kw):
     FormatterBase.preformatted(self, on)
     snip = u'%s\n' % u'---%<'.ljust(78 - self._indent, u'-')
     if on:
         self.paragraph_begin()
         return self.wrap(snip)
     else:
         if self._textbuf and not self._textbuf.endswith('\n'):
             self._textbuf += '\n'
         result = self.wrap(snip)
         self.paragraph_end()
         return result
开发者ID:IvanLogvinov,项目名称:soar,代码行数:14,代码来源:text_plain.py

示例4: preformatted

# 需要导入模块: from MoinMoin.formatter import FormatterBase [as 别名]
# 或者: from MoinMoin.formatter.FormatterBase import preformatted [as 别名]
 def preformatted(self, on, **kw):
     FormatterBase.preformatted(self, on)
     self._elem(u"source", on)
     return ""
开发者ID:pombredanne,项目名称:akara,代码行数:6,代码来源:application_xml.py

示例5: preformatted

# 需要导入模块: from MoinMoin.formatter import FormatterBase [as 别名]
# 或者: from MoinMoin.formatter.FormatterBase import preformatted [as 别名]
 def preformatted(self, on, **kw):
     FormatterBase.preformatted(self, on)
     result = ''
     if self.in_p:
         result = self.paragraph(0)
     return result + ['<source><![CDATA[', ']]></source>'][not on]
开发者ID:IvanLogvinov,项目名称:soar,代码行数:8,代码来源:text_xml.py

示例6: preformatted

# 需要导入模块: from MoinMoin.formatter import FormatterBase [as 别名]
# 或者: from MoinMoin.formatter.FormatterBase import preformatted [as 别名]
	def preformatted(self, on):
		FormatterBase.preformatted(self, on)
		self.verbatim = on
		return self.write_text(['\\begin{verbatim}\n', '\\end{verbatim}\n'][not on])
开发者ID:IvanLogvinov,项目名称:soar,代码行数:6,代码来源:moin2latex.py


注:本文中的MoinMoin.formatter.FormatterBase.preformatted方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。