remove collapsible from qml language guide

Fixes #12
This commit is contained in:
outfoxxed 2025-07-28 00:11:30 -07:00
parent b72bc5d43d
commit eb28203ca3
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E

View file

@ -2,7 +2,6 @@
title: "QML Language" title: "QML Language"
index: 10 index: 10
--- ---
import Collapsible from "@components/Collapsible.astro";
Quickshell is configured using the Qt Modeling Language, or QML. Quickshell is configured using the Qt Modeling Language, or QML.
This page explains what you need to know about QML to start using Quickshell. This page explains what you need to know about QML to start using Quickshell.
@ -307,15 +306,11 @@ The id must be lowercase.
} }
``` ```
<Collapsible title="How is the `id` property different from normal properties?">
The `id` property isn't really a property, and doesn't do anything other than The `id` property isn't really a property, and doesn't do anything other than
expose the object to the current file. It is only called a property because it expose the object to the current file. It is only called a property because it
uses very similar syntax to one, and is the only exception to standard property uses very similar syntax to one, and is the only exception to standard property
definition rules. The name `id` is always reserved for the id property. definition rules. The name `id` is always reserved for the id property.
</Collapsible>
##### Property access scopes ##### Property access scopes
Properties are "in scope" and usable in two cases. Properties are "in scope" and usable in two cases.