docs added hash tags

This commit is contained in:
silverqx
2022-05-18 16:04:44 +02:00
parent 3e7afec04b
commit 542e653a3e
3 changed files with 8 additions and 8 deletions

View File

@@ -2,6 +2,6 @@
The build systems supported out of the box are CMake and qmake.
- [Building: TinyORM](tinyorm.mdx)
- [Building: Hello world](hello-world.mdx)
- [Building: Migrations](migrations.mdx)
- [Building: TinyORM](tinyorm.mdx#building-tinyorm)
- [Building: Hello world](hello-world.mdx#building-hello-world)
- [Building: Migrations](migrations.mdx#building-migrations)

View File

@@ -2,6 +2,6 @@
Almost every modern application interacts with a database. TinyORM makes interacting with a database extremely simple using raw SQL, a [fluent query builder](query-builder.mdx), and the [TinyORM](../tinyorm/getting-started.mdx).
- [Database: Getting Started](getting-started.mdx)
- [Database: Query Builder](query-builder.mdx)
- [Database: Migrations](migrations.mdx)
- [Database: Getting Started](getting-started.mdx#database-getting-started)
- [Database: Query Builder](query-builder.mdx#database-query-builder)
- [Database: Migrations](migrations.mdx#database-migrations)

View File

@@ -2,5 +2,5 @@
TinyORM is an object-relational mapper (ORM) that makes it enjoyable to interact with your database. When using TinyORM, each database table has a corresponding "Model" that is used to interact with that table. In addition to retrieving records from the database table, TinyORM models allow you to insert, update, and delete records from the table as well.
- [TinyORM: Getting Started](getting-started.mdx)
- [TinyORM: Relationships](relationships.mdx)
- [TinyORM: Getting Started](getting-started.mdx#tinyorm-getting-started)
- [TinyORM: Relationships](relationships.mdx#tinyorm-relationships)