From 900343b2ea1fa1f2a69aa98669d08f31b3a06049 Mon Sep 17 00:00:00 2001 From: Vik Nikolova Date: Thu, 5 Dec 2024 10:32:38 +0100 Subject: [PATCH] fix: Fix markup validity issues in the Get started tutorial (#2312) --- .../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 1f7904428b..73f72cb2ba 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 @@ -467,9 +465,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)