remove mkdocs specific syntax

This commit is contained in:
Marcello 2024-06-16 19:14:59 +02:00
parent 8d08c1964f
commit 8026e1465b
Signed by: m-lamonaca
SSH key fingerprint: SHA256:8db8uii6Gweq7TbKixFBioW2T8CbgtyFETyYL3cr3zk
77 changed files with 1128 additions and 1128 deletions

View file

@ -4,7 +4,7 @@
Connection to the DB.
```java linenums="1"
```java
package dao;
import java.sql.Connection;
@ -51,7 +51,7 @@ public class DB {
Interface for CRUD methods on a database.
```java linenums="1"
```java
package dao;
import java.sql.SQLException;
@ -69,7 +69,7 @@ public interface I<Type>DAO {
Class implementing `I<Type>DAO` and handling the communication with the db.
```java linenums="1"
```java
package dao;
import java.sql.ResultSet;