From 93842baea906a50de7f5e404b67c1e40eaa07353 Mon Sep 17 00:00:00 2001 From: Viktoriya Nikolova Date: Mon, 18 Nov 2024 14:50:53 +0100 Subject: [PATCH] fix: Fix markup validity issues in the Get started tutorial --- .../topics/Getting-Started-with-Exposed.topic | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/documentation-website/Writerside/topics/Getting-Started-with-Exposed.topic b/documentation-website/Writerside/topics/Getting-Started-with-Exposed.topic index 914118a1e9..c065e7f848 100644 --- a/documentation-website/Writerside/topics/Getting-Started-with-Exposed.topic +++ b/documentation-website/Writerside/topics/Getting-Started-with-Exposed.topic @@ -58,11 +58,9 @@ -

- First, you will need a basic Kotlin project setup to build upon. You can - download a pre-initialized - project or follow the steps below to generate a new project with Gradle. -

+ First, you will need a basic Kotlin project setup to build upon. You can + download a pre-initialized project or follow the steps + below to generate a new project with Gradle.

In a terminal window, navigate to the destination where you want to create your project and run @@ -461,9 +459,8 @@

-

- - You should now see the following result:

+ +

You should now see the following result:

SQL: SELECT VALUE FROM INFORMATION_SCHEMA.SETTINGS WHERE NAME = 'MODE' SQL: CREATE TABLE IF NOT EXISTS TASKS (ID INT AUTO_INCREMENT NOT NULL, "name" VARCHAR(128) NOT NULL, DESCRIPTION VARCHAR(128) NOT NULL, COMPLETED BOOLEAN DEFAULT FALSE NOT NULL)