diff --git a/qdrant-landing/content/articles/memory-consumption.md b/qdrant-landing/content/articles/memory-consumption.md
index 1acaecdae..a36ce3f59 100644
--- a/qdrant-landing/content/articles/memory-consumption.md
+++ b/qdrant-landing/content/articles/memory-consumption.md
@@ -208,8 +208,6 @@ Now the out-of-memory happens when we allow using **600mb** RAM only
-
-
At this point we have to switch from network-mounted storage to a faster disk, as the network-based storage is too slow to handle the amount of sequential reads that our system needs to serve the queries.
But let's first see how much RAM we need to serve 1 million vectors and then we will discuss the speed optimization as well.
@@ -251,8 +249,6 @@ With this configuration we are able to serve 1 million vectors with **only 135mb
-
-
At this point the importance of the disk speed becomes critical.
We can serve the search requests with 135mb of RAM, but the speed of the requests makes it impossible to use the system in production.
diff --git a/qdrant-landing/content/benchmarks/benchmarks-intro.md b/qdrant-landing/content/benchmarks/benchmarks-intro.md
index 5dd9dfce3..7122a1982 100644
--- a/qdrant-landing/content/benchmarks/benchmarks-intro.md
+++ b/qdrant-landing/content/benchmarks/benchmarks-intro.md
@@ -26,7 +26,5 @@ Here are the principles we followed while designing these benchmarks:
-
-
Some of our experiment design decisions are described in the [F.A.Q Section](/benchmarks/#benchmarks-faq).
Reach out to us on our [Discord channel](https://qdrant.to/discord) if you want to discuss anything related Qdrant or these benchmarks.
diff --git a/qdrant-landing/content/documentation/concepts/collections.md b/qdrant-landing/content/documentation/concepts/collections.md
index e550f1fe5..68b8854aa 100644
--- a/qdrant-landing/content/documentation/concepts/collections.md
+++ b/qdrant-landing/content/documentation/concepts/collections.md
@@ -1262,7 +1262,6 @@ await client.GetCollectionInfoAsync("{collection_name}");
```
-
If you insert the vectors into the collection, the `status` field may become
`yellow` whilst it is optimizing. It will become `green` once all the points are
diff --git a/qdrant-landing/themes/qdrant-2024/assets/css/partials/_documentation-article.scss b/qdrant-landing/themes/qdrant-2024/assets/css/partials/_documentation-article.scss
index 726346687..693990366 100644
--- a/qdrant-landing/themes/qdrant-2024/assets/css/partials/_documentation-article.scss
+++ b/qdrant-landing/themes/qdrant-2024/assets/css/partials/_documentation-article.scss
@@ -23,7 +23,7 @@
padding-top: $spacer * 0.5;
}
- p {
+ p, summary {
margin-bottom: $spacer;
}
diff --git a/qdrant-landing/themes/qdrant-2024/assets/css/partials/_qdrant-post.scss b/qdrant-landing/themes/qdrant-2024/assets/css/partials/_qdrant-post.scss
index 8c0a8b5ec..25d83cb3e 100644
--- a/qdrant-landing/themes/qdrant-2024/assets/css/partials/_qdrant-post.scss
+++ b/qdrant-landing/themes/qdrant-2024/assets/css/partials/_qdrant-post.scss
@@ -46,7 +46,8 @@
&__content {
p,
- li {
+ li,
+ summary {
margin-bottom: $spacer * 2;
}
p,