node_decision_list

class atlas_doc_parser.nodes.node_decision_list.NodeDecisionListAttrs(localId: str = REQ)[source]

Attributes for NodeDecisionList.

Parameters:

localId – A unique identifier for the decision list.

class atlas_doc_parser.nodes.node_decision_list.NodeDecisionList(type: str = 'decisionList', attrs: NodeDecisionListAttrs = REQ, content: list[NodeDecisionItem] = REQ)[source]

A container for decision items.

The decisionList node is a top-level block node that groups multiple decisionItem nodes together for rendering as a decision list.

to_markdown(ignore_error: bool = False) str[source]

Convert the decision list to Markdown format.

Each decision item is rendered as a blockquote with > prefix on every line, separated by blank lines between items.