format: apply repo prettier (3.8.1) to the folded skills tree

963 markdown files reformatted with the repository's pinned prettier so
pnpm format:check covers the folded tree like every other repo file.

The formatter's embedded-language pass also normalized code fences
(TS semicolons, closed HTML tags in examples, lowercased CSS hex colors,
one renumbered list that skipped an index). Alphanumeric token deltas vs
the fold commit were audited file-by-file; all are formatter-equivalent
markup normalizations plus the four sanitized skills.
This commit is contained in:
fargo
2026-08-19 14:37:17 -05:00
parent d2eeb64433
commit 1a822493ba
962 changed files with 29594 additions and 27188 deletions
@@ -9,9 +9,9 @@ Reactive [Screen Wake Lock API](https://developer.mozilla.org/en-US/docs/Web/API
## Usage
```ts
import { useWakeLock } from '@vueuse/core'
import { useWakeLock } from '@vueuse/core';
const { isSupported, isActive, forceRequest, request, release } = useWakeLock()
const { isSupported, isActive, forceRequest, request, release } = useWakeLock();
```
When `request` is called, the wake lock will be requested if the document is visible. Otherwise, the request will be queued until the document becomes visible. If the request is successful, `isActive` will be **true**. Whenever the document is hidden, the `isActive` will be **false**.
@@ -23,13 +23,13 @@ To request a wake lock immediately, even if the document is hidden, use `forceRe
## Type Declarations
```ts
type WakeLockType = "screen"
type WakeLockType = 'screen';
export interface WakeLockSentinel extends EventTarget {
type: WakeLockType
released: boolean
release: () => Promise<void>
type: WakeLockType;
released: boolean;
release: () => Promise<void>;
}
export type UseWakeLockOptions = ConfigurableNavigator & ConfigurableDocument
export type UseWakeLockOptions = ConfigurableNavigator & ConfigurableDocument;
/**
* Reactive Screen Wake Lock API.
*
@@ -39,12 +39,12 @@ export type UseWakeLockOptions = ConfigurableNavigator & ConfigurableDocument
* @__NO_SIDE_EFFECTS__
*/
export declare function useWakeLock(options?: UseWakeLockOptions): {
sentinel: ShallowRef<WakeLockSentinel | null, WakeLockSentinel | null>
isSupported: ComputedRef<boolean>
isActive: ComputedRef<boolean>
request: (type: WakeLockType) => Promise<void>
forceRequest: (type: WakeLockType) => Promise<void>
release: () => Promise<void>
}
export type UseWakeLockReturn = ReturnType<typeof useWakeLock>
sentinel: ShallowRef<WakeLockSentinel | null, WakeLockSentinel | null>;
isSupported: ComputedRef<boolean>;
isActive: ComputedRef<boolean>;
request: (type: WakeLockType) => Promise<void>;
forceRequest: (type: WakeLockType) => Promise<void>;
release: () => Promise<void>;
};
export type UseWakeLockReturn = ReturnType<typeof useWakeLock>;
```