Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Slides.ipynb with text and punctuation #7746

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
12 changes: 6 additions & 6 deletions examples/reference/templates/Slides.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"The `SlidesTemplate` is a simple extension of the basic template that uses the [reveal.js](https://revealjs.com/) presentation framework to present the published outputs as a set of slides. It is a list-like variant where the `main` area acts like a list-like container but unlike other list-like templates the individual items are published as separate slides (unless marked as a fragment).\n",
"The `SlidesTemplate` is a simple extension of the basic template that uses the [reveal.js](https://revealjs.com/) presentation framework to present the published outputs as a set of slides. It is a list-like variant where the `main` area acts like a list-like container, but unlike other list-like templates, the individual items are published as separate slides (unless marked as a fragment).\n",
"\n",
"## Basic Templates\n",
"\n",
Expand All @@ -15,13 +15,13 @@
"* **`main`**: The main area of the application\n",
"* **`modal`**: A modal area which can be opened and closed from Python\n",
"\n",
"These four areas behave very similarly to other Panel layout components and have list-like semantics. This means we can easily append new components into these areas. Unlike other layout components however, the contents of the areas is fixed once rendered. If you need a dynamic layout you should therefore insert a regular Panel layout component (e.g. a `Column` or `Row`) and modify it in place once added to one of the content areas. \n",
"These four areas behave very similarly to other Panel layout components and have list-like semantics. This means we can easily append new components into these areas. Unlike other layout components however, the contents of the areas are fixed once rendered. If you need a dynamic layout you should therefore insert a regular Panel layout component (e.g. a `Column` or `Row`) and modify it in place once added to one of the content areas. \n",
"\n",
"Templates can allow for us to quickly and easily create web apps for displaying our data. Panel comes with a default Template, and includes multiple Templates that extend the default which add some customization for a better display.\n",
"Templates can allow for us to quickly and easily create web apps for displaying our data. Panel comes with a default Template, and includes multiple Templates that extend the default, which add some customization for a better display.\n",
"\n",
"#### Parameters:\n",
"\n",
"In addition to the four different areas we can populate the default templates also provide a few additional parameters:\n",
"In addition to the four different areas we can populate, the default templates provide some additional parameters:\n",
"\n",
"* **`busy_indicator`** (BooleanIndicator): Visual indicator of application busy state.\n",
"* **`collapsed_sidebar`** (str, `default=True`): Whether the sidebar (if present) is initially collapsed.\n",
Expand All @@ -36,7 +36,7 @@
"\n",
"##### reveal.js parameters\n",
"\n",
"The `SlideTemplate` which is based on reveal.js additionally has some additional:\n",
"The `SlideTemplate` which is based on reveal.js, has some additional parameters:\n",
"\n",
"* **`reveal_config`** (`dict`): The reveal.js [config](https://revealjs.com/config/) options to apply\n",
"* **`reveal_theme`** (str): The reveal.js theme to apply (one of `black | white | league | beige | night | solarized | simple`)\n",
Expand All @@ -49,7 +49,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"In this case we are using the `SlidesTemplate`, built on top of reveal.js. It differs slightly to other templates so we will start by setting up the code and then go through the template configuration step-by-step."
"In this case we are using the `SlidesTemplate`, built on top of reveal.js. It differs slightly from other templates, so we will start by setting up the code and then go through the template configuration step-by-step."
]
},
{
Expand Down
Loading