aptu_coder_core/languages/html.rs
1// SPDX-FileCopyrightText: 2026 aptu-coder contributors
2// SPDX-License-Identifier: Apache-2.0
3//! HTML language stub.
4//!
5//! HTML is recognised by extension (`html`, `htm`) but has no tree-sitter grammar
6//! dependency in this release. Extraction returns zero functions and imports.
7//! This module reserves the feature slot for a future `tree-sitter-html` upgrade.
8
9/// Tree-sitter element query for HTML (empty -- no grammar compiled in).
10pub const ELEMENT_QUERY: &str = "";
11
12/// Tree-sitter call query for HTML (empty -- no grammar compiled in).
13pub const CALL_QUERY: &str = "";