Skip to content

Commit 5a3e0e0

Browse files
committed
Update a ReadMe
1 parent c2a012f commit 5a3e0e0

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

examples/presenter/ReadMe.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[<img src="https://seleniumbase.io/cdn/img/sb_logo_10t.png" title="SeleniumBase" width="220">](https://github.com/seleniumbase/SeleniumBase/)
22

3-
<h1> 📑 Presenter / Slides 🎞️ </h1>
3+
<h1> 📑 Presenter/Slides 🎞️ </h1>
44

55
<p>SeleniumBase Presenter / Slides lets you use Python to generate HTML presentations and slide shows from Reveal-JS.</p>
66

@@ -37,7 +37,7 @@ pytest core_presentation.py
3737
```
3838

3939

40-
<h3><img src="https://seleniumbase.io/img/sb_icon.png" title="SeleniumBase" width="24" /> Creating a new presentation:</h3>
40+
<h3><img src="https://seleniumbase.io/img/logo6.png" title="SeleniumBase" width="24" /> Creating a new presentation:</h3>
4141

4242
```python
4343
self.create_presentation(name=None, theme="serif", transition="default")
@@ -60,7 +60,7 @@ Notes are disabled by default. You can enable notes by specifying:
6060
``show_notes=True``
6161

6262

63-
<h3><img src="https://seleniumbase.io/img/sb_icon.png" title="SeleniumBase" width="24" /> Adding a slide to a presentation:</h3>
63+
<h3><img src="https://seleniumbase.io/img/logo6.png" title="SeleniumBase" width="24" /> Adding a slide to a presentation:</h3>
6464

6565
```python
6666
self.add_slide(content=None, image=None, code=None, iframe=None,
@@ -83,8 +83,7 @@ self.add_slide(content=None, image=None, code=None, iframe=None,
8383
"""
8484
```
8585

86-
87-
<h3><img src="https://seleniumbase.io/img/sb_icon.png" title="SeleniumBase" width="24" /> Running a presentation:</h3>
86+
<h3><img src="https://seleniumbase.io/img/logo6.png" title="SeleniumBase" width="24" /> Running a presentation:</h3>
8887

8988
```python
9089
self.begin_presentation(
@@ -107,7 +106,7 @@ Before the presentation is run, the full HTML is saved to the ``saved_presentati
107106

108107
All methods have the optional ``name`` argument, which is only needed if you're creating multiple presentations at once.
109108

110-
<h3><img src="https://seleniumbase.io/img/sb_icon.png" title="SeleniumBase" width="24" /> Here's an example of using SeleniumBase Presenter:</h3>
109+
<h3><img src="https://seleniumbase.io/img/logo6.png" title="SeleniumBase" width="24" /> Here's an example of using SeleniumBase Presenter:</h3>
111110

112111
```python
113112
from seleniumbase import BaseCase
@@ -232,7 +231,7 @@ That example is from [my_presentation.py](https://github.com/seleniumbase/Seleni
232231
pytest my_presentation.py
233232
```
234233

235-
<h3><img src="https://seleniumbase.io/img/sb_icon.png" title="SeleniumBase" width="24" /> Saving a presentation:</h3>
234+
<h3><img src="https://seleniumbase.io/img/logo6.png" title="SeleniumBase" width="24" /> Saving a presentation:</h3>
236235

237236
If you want to save the presentation you created as an HTML file, use:
238237

@@ -241,6 +240,7 @@ self.save_presentation(filename="my_presentation.html", show_notes=True)
241240
```
242241

243242
Presentations automatically get saved when calling:
243+
244244
```python
245245
self.begin_presentation(show_notes=True)
246246
```

0 commit comments

Comments
 (0)