mbolli/tempest-highlight-datastar
Composer 安装命令:
composer require mbolli/tempest-highlight-datastar
包简介
Datastar language support for tempest/highlight — highlights data-* attributes, $signals, @actions, and expressions.
README 文档
README
Datastar syntax highlighting for tempest/highlight — highlights data-* attributes, $signals, @actions, and expressions in HTML code blocks.
Installation
composer require mbolli/tempest-highlight-datastar
Usage
Register by name
Register the language once on your Highlighter instance, then use it by name:
use Mbolli\TempestHighlightDatastar\Html\DatastarHtmlLanguage; use Tempest\Highlight\Highlighter; $highlighter = new Highlighter(); $highlighter->addLanguage(new DatastarHtmlLanguage()); // Use by name or alias $html = $highlighter->parse($code, 'datastar-html'); $html = $highlighter->parse($code, 'datastar');
Registering the language also overrides the built-in html language (via alias), so <<<HTML heredocs in PHP code and Markdown fenced code blocks tagged ```html automatically get Datastar highlighting.
Pass as object
Alternatively, pass the language directly without registering:
$html = $highlighter->parse($code, new DatastarHtmlLanguage());
What gets highlighted
- Datastar
data-*attributes —data-signals,data-on,data-bind,data-show, etc. - Signals —
$signalName,$$componentSignal - Actions —
@get(),@post(),@put(),@patch(),@delete(), etc. - Special variables —
el,evt,patch - Expressions inside attribute values are parsed as JavaScript with Datastar extensions
Available Languages
| Class | Name | Alias | Extends |
|---|---|---|---|
DatastarHtmlLanguage |
datastar-html |
datastar, html |
HtmlLanguage |
DatastarTwigLanguage |
datastar-twig |
twig |
DatastarHtmlLanguage |
Twig
use Mbolli\TempestHighlightDatastar\Twig\DatastarTwigLanguage; $highlighter->addLanguage(new DatastarTwigLanguage()); $html = $highlighter->parse($code, 'datastar-twig');
This also overrides the built-in twig language, so any code already highlighted as 'twig' will gain Datastar support.
PHP templates
Since DatastarHtmlLanguage overrides the built-in html language, just highlight your PHP files as 'php'. The PhpHeredocInjection resolves <<<HTML blocks via the 'html' name, which now points to DatastarHtmlLanguage — so heredocs and inline HTML automatically get Datastar highlighting.
Markdown
Markdown in tempest/highlight does not parse inline HTML, so no Datastar-specific Markdown language is needed. Since DatastarHtmlLanguage overrides html, fenced code blocks tagged ```html, ```datastar, or ```datastar-html all get Datastar highlighting automatically.
Creating your own language variant
tempest/highlight has no way to globally override HtmlLanguage, so languages like Blade that extend it won't automatically gain Datastar support. You can create your own variant by extending DatastarHtmlLanguage and re-adding the framework-specific injections/patterns.
For example, to create a Blade variant:
use Mbolli\TempestHighlightDatastar\Html\DatastarHtmlLanguage; use Tempest\Highlight\Languages\Blade\Injections\BladeEchoInjection; use Tempest\Highlight\Languages\Blade\Injections\BladeKeywordInjection; use Tempest\Highlight\Languages\Blade\Injections\BladePhpInjection; use Tempest\Highlight\Languages\Blade\Injections\BladeRawEchoInjection; use Tempest\Highlight\Languages\Blade\Patterns\BladeComponentCloseTagPattern; use Tempest\Highlight\Languages\Blade\Patterns\BladeComponentOpenTagPattern; final class DatastarBladeLanguage extends DatastarHtmlLanguage { #[\Override] public function getName(): string { return 'datastar-blade'; } /** @return list<string> */ #[\Override] public function getAliases(): array { return []; } #[\Override] public function getInjections(): array { return [ ...parent::getInjections(), new BladeKeywordInjection(), new BladePhpInjection(), new BladeEchoInjection(), new BladeRawEchoInjection(), ]; } #[\Override] public function getPatterns(): array { return [ ...parent::getPatterns(), new BladeComponentOpenTagPattern(), new BladeComponentCloseTagPattern(), ]; } }
The pattern is always the same: extend DatastarHtmlLanguage, override getName(), and re-add the injections/patterns from the original language.
License
MIT
mbolli/tempest-highlight-datastar 适用场景与选型建议
mbolli/tempest-highlight-datastar 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 19 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 03 月 16 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「syntax-highlighting」 「Datastar」 「tempest-highlight」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 mbolli/tempest-highlight-datastar 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 mbolli/tempest-highlight-datastar 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 mbolli/tempest-highlight-datastar 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A PHP library for highlighting code syntax.
A Twig extension for defining blocks of code for syntax highlighting (with Pygments) and more.
Syntax-highlighting grammars for the Carve markup language (TextMate grammar for Torchlight / phiki, plus Prism and highlight.js definitions)
Syntax highlighting grammars for the Djot markup language
Laravel-native reactive frontends using Datastar. Build dynamic UIs with Blade templates.
Lightweight syntax highlighting for Craft CMS using Prism.js
统计信息
- 总下载量: 19
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 32
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-03-16