- Add new libraries: ui-accessibility, ui-animations, ui-backgrounds, ui-code-display, ui-data-utils, ui-font-manager, hcl-studio - Add extensive layout components: gallery-grid, infinite-scroll-container, kanban-board, masonry, split-view, sticky-layout - Add comprehensive demo components for all new features - Update project configuration and dependencies - Expand component exports and routing structure - Add UI landing pages planning document 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
23 lines
525 B
JavaScript
23 lines
525 B
JavaScript
// https://en.wikipedia.org/wiki/Test_Anything_Protocol
|
|
|
|
Prism.languages.tap = {
|
|
'fail': /not ok[^#{\n\r]*/,
|
|
'pass': /ok[^#{\n\r]*/,
|
|
'pragma': /pragma [+-][a-z]+/,
|
|
'bailout': /bail out!.*/i,
|
|
'version': /TAP version \d+/i,
|
|
'plan': /\b\d+\.\.\d+(?: +#.*)?/,
|
|
'subtest': {
|
|
pattern: /# Subtest(?:: .*)?/,
|
|
greedy: true
|
|
},
|
|
'punctuation': /[{}]/,
|
|
'directive': /#.*/,
|
|
'yamlish': {
|
|
pattern: /(^[ \t]*)---[\s\S]*?[\r\n][ \t]*\.\.\.$/m,
|
|
lookbehind: true,
|
|
inside: Prism.languages.yaml,
|
|
alias: 'language-yaml'
|
|
}
|
|
};
|