Skip to content

Z108: EMPTY_LINK_TEXT

Severity: error Penalty: 1.0 point Category: structural Auto-fixable: Yes

Rationale

This rule is emitted when an inline link tag [...] contains empty brackets or whitespace-only text.

Links without accessible text labels violate web accessibility standards (WCAG 2.1) and screen readers cannot describe the link destination to visually impaired users.

How to Fix

Inspect the flagged location in the Markdown file and update the content or configuration:

Bad (Triggers Z108)

<!-- BAD: Empty or whitespace-only link label -->
[](https://zenzic.dev/docs)

Good (Resolves Z108)

<!-- GOOD: Accessible descriptive link text -->
[Zenzic Documentation Catalog](https://zenzic.dev/docs)

Configuration

# Automatically fix empty link text across workspace
zenzic fix --only Z108

Reference

See the Finding Codes Index for finding code details.