We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ad9013 commit 8ec3de0Copy full SHA for 8ec3de0
docs/docs/codes/wrap_presentation.py
@@ -0,0 +1,5 @@
1
+import pptx
2
+
3
+import tppt
4
5
+presentation = tppt.Presentation(pptx.Presentation())
docs/docs/usage/presentation.md
@@ -0,0 +1,12 @@
+tppt.Presentation クラスは pttx.Presentation クラスのラッパーであり、簡単にラップできます。
+```python
+--8<-- "codes/wrap_presentation.py"
+```
6
7
+しかし、 tppt の本来の利用方法は builder です。
8
+builder を利用することで、スライドマスターとスライドレイアウトを型安全に利用しながらスライドを作成できます。
9
10
11
+--8<-- "codes/quick_start.py"
12
0 commit comments