本文整理匯總了Python中docutils.writers.html5_polyglot.HTMLTranslator.should_be_compact_paragraph方法的典型用法代碼示例。如果您正苦於以下問題:Python HTMLTranslator.should_be_compact_paragraph方法的具體用法?Python HTMLTranslator.should_be_compact_paragraph怎麽用?Python HTMLTranslator.should_be_compact_paragraph使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類docutils.writers.html5_polyglot.HTMLTranslator
的用法示例。
在下文中一共展示了HTMLTranslator.should_be_compact_paragraph方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: should_be_compact_paragraph
# 需要導入模塊: from docutils.writers.html5_polyglot import HTMLTranslator [as 別名]
# 或者: from docutils.writers.html5_polyglot.HTMLTranslator import should_be_compact_paragraph [as 別名]
def should_be_compact_paragraph(self, node):
# type: (nodes.Node) -> bool
"""Determine if the <p> tags around paragraph can be omitted."""
if isinstance(node.parent, addnodes.desc_content):
# Never compact desc_content items.
return False
if isinstance(node.parent, addnodes.versionmodified):
# Never compact versionmodified nodes.
return False
return BaseTranslator.should_be_compact_paragraph(self, node)