From 61d77d8dafb4bb43aeeb5746c21ebdc848cad0c2 Mon Sep 17 00:00:00 2001 From: jif-oai Date: Tue, 3 Mar 2026 20:01:31 +0000 Subject: [PATCH] nit --- .../artifact-presentation/src/presentation_artifact/pptx.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/codex-rs/artifact-presentation/src/presentation_artifact/pptx.rs b/codex-rs/artifact-presentation/src/presentation_artifact/pptx.rs index ba53ca788b..66e3e7a2e3 100644 --- a/codex-rs/artifact-presentation/src/presentation_artifact/pptx.rs +++ b/codex-rs/artifact-presentation/src/presentation_artifact/pptx.rs @@ -1063,6 +1063,7 @@ fn export_text_body_xml( let top_inset = points_to_emu(insets.top); let bottom_inset = points_to_emu(insets.bottom); format!( + // codespell:ignore lIns,rIns,tIns,bIns r#"{auto_fit}{paragraphs}"# ) } @@ -1115,6 +1116,7 @@ fn export_table_cell_text_body_xml( let top_inset = points_to_emu(insets.top); let bottom_inset = points_to_emu(insets.bottom); format!( + // codespell:ignore lIns,rIns,tIns,bIns r#" lIns="{left_inset}" rIns="{right_inset}" tIns="{top_inset}" bIns="{bottom_inset}""#, ) });