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

Docs: minor improvements #249

Merged
merged 1 commit into from
Sep 19, 2024
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions docs/modules/ROOT/pages/advanced.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ which contains several form elements, which are just tags to make composition ea
For example `formElement` is a custom Qute tag (see xref:concepts.adoc#_user_tags[User tags]) for Bootstrap which defines layout for the form element and displays any associated error:

[source,html]
.content of the `templates/tags/formElement.html`
.content of the `templates/tags/formElement.html` file
----
<div class="mb-3">
<label class="form-label" for="{name}">{label}</label>
Expand All @@ -61,7 +61,7 @@ For example `formElement` is a custom Qute tag (see xref:concepts.adoc#_user_tag
The `input` user tag is also designed for Bootstrap as an abstraction:

[source,html]
.content of the `templates/tags/input.html`
.content of the `templates/tags/input.html` file
----
<input name="{name}"
type="{type ?: 'text'}"
Expand Down Expand Up @@ -123,7 +123,7 @@ public static class FormData {
}
----

Check out the {quarkus-guides-url}/resteasy-reactive#handling-multipart-form-data[RESTEasy Reactive documentation]
Check out the {quarkus-guides-url}/rest#multipart[Quarkus REST documentation]
for more information about form parameters and multi-part.

=== Validation
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/ROOT/pages/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ include::./includes/attributes.adoc[]
image::renarde.svg[alt=Renarde,width=100,float="right"]

Renarde image:renarde-head.svg[width=15em] is a server-side Web Framework based on Quarkus, {quarkus-guides-url}/qute-reference[Qute],
{quarkus-guides-url}/hibernate-orm-panache[Hibernate] and {quarkus-guides-url}/resteasy-reactive[RESTEasy Reactive].
{quarkus-guides-url}/hibernate-orm-panache[Hibernate] and {quarkus-guides-url}/rest[Quarkus REST].


[source,xml,subs=attributes+]
Expand Down
Loading