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

Markdown is not the only way to create pages #680

Merged
merged 9 commits into from
Oct 23, 2023
6 changes: 3 additions & 3 deletions docs/knowledge_base/tips/multipage_application/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@ pages work independently:
- The `home_md` page shows a welcome message.
- The `temperature_md` page lets a user convert temperatures from Fahrenheit (°F) to Celsius (°C).

Usually, if we were making a simple one-page application, we'd give one of our pages (Taipy
[Markdown](../../../manuals/reference/taipy.gui.Markdown.md) or
Usually, if we were making a simple one-page application, we'd give one of our pages (created with
[Markdown](../../../manuals/gui/pages/index.md#using-markdown), [Python](../../../manuals/gui/page_builder.md) or
jrobinAV marked this conversation as resolved.
Show resolved Hide resolved
[HTML](../../../manuals/reference/taipy.gui.Html.md) objects) to the
jrobinAV marked this conversation as resolved.
Show resolved Hide resolved
`[`Gui` constructor](Gui.init()^)` constructor. For example, to turn `home.py` into a one-page
[`Gui` constructor](Gui.init()^) constructor. For example, to turn `home.py` into a one-page
Taipy application,
we could add these lines:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ default) in the `run()` method. For example, `Gui(...).run(port=xxxx)`. Other pa
[here](../../../../manuals/gui/configuration.md#configuring-the-gui-instance).


Keep in mind that you have the option to format your text. Taipy uses Markdown syntax to style your
Keep in mind that you have the option to format your text. Taipy uses different ways to create pages: [Markdown](../../../manuals/gui/pages/index.md#using-markdown), [Python](../../../manuals/gui/page_builder.md) or
jrobinAV marked this conversation as resolved.
Show resolved Hide resolved
[HTML](../../../manuals/reference/taipy.gui.Html.md) objects. Here is the Markdown syntax to style your
text and more. Therefore, `#` creates a title, `##` makes a subtitle. Put your text in `*` for
*italics* or in `**` to have it in **bold**.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,8 @@ more within the graphical interface.

## Visual elements

Taipy GUI can be considered as an **augmented** Markdown; it adds the concept of
**[Visual elements](../../../../manuals/gui/viselements/index.md)** on top of all the Markdown
syntax. A visual element is a Taipy graphical object displayed on the client. It can be a
When using the Mardown syntax, Taipy augments it with the concept of
**[visual elements](../../../../manuals/gui/viselements/index.md)**. A visual element is a Taipy graphical object displayed on the client. It can be a
jrobinAV marked this conversation as resolved.
Show resolved Hide resolved
[slider](../../../../manuals/gui/viselements/slider.md), a
[chart](../../../../manuals/gui/viselements/chart.md), a
[table](../../../../manuals/gui/viselements/table.md), an
Expand Down
Loading