Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions skill/sdpm/builder/elements/shape.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ def _add_shape(self, slide, elem):
"right_bracket": MSO_SHAPE.RIGHT_BRACKET,
"cylinder": MSO_SHAPE.CAN,
"math_not_equal": MSO_SHAPE.MATH_NOT_EQUAL,
"folded_corner": MSO_SHAPE.FOLDED_CORNER,
}

mso_shape = shape_map.get(shape_type)
Expand Down
1 change: 1 addition & 0 deletions skill/sdpm/converter/elements.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
'flowChartTerminator': 'flowchart_terminator',
'leftBracket': 'left_bracket', 'rightBracket': 'right_bracket',
'can': 'cylinder', 'mathNotEqual': 'math_not_equal',
'foldedCorner': 'folded_corner',
}

def _resolve_shape_name(shape):
Expand Down
1 change: 1 addition & 0 deletions skill/sdpm/schema/lint.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,7 @@ def _lint_line(si: int, ei: int, elem: dict) -> list[dict]:
"callout_rectangle", "callout_rounded_rectangle", "callout_oval",
"flowchart_process", "flowchart_decision", "flowchart_terminator",
"left_brace", "right_brace", "left_bracket", "right_bracket",
"folded_corner",
}


Expand Down
Loading