mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-17 16:09:40 +02:00
All standalone SvelteKit web apps have been superseded by the unified ManaCore app (apps/manacore/apps/web). Moved to web-archived/ within each project to preserve history while removing from active workspace. Archived: calc, cards, chat, citycorners, contacts, context, guides, inventar, moodlit, mukke, news, nutriphi, photos, picture, planta, presi, questions, skilltree, storage, times, zitare, todo, calendar, uload, memoro Moved to apps-archived/: wisekeep (not integrated, inactive) Kept active: manacore (unified), matrix, manavoxel, arcade (separate containers) Server, landing, and package directories remain active for each project. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
48 lines
1.1 KiB
TypeScript
48 lines
1.1 KiB
TypeScript
/**
|
|
* Mukke-specific syntax help patterns
|
|
*/
|
|
import type { SyntaxGroup } from '@manacore/shared-ui';
|
|
|
|
export const MUKKE_SYNTAX: SyntaxGroup[] = [
|
|
{
|
|
title: 'Musik',
|
|
items: [
|
|
{
|
|
pattern: 'Artist - Title',
|
|
description: 'Interpret und Titel mit Bindestrich trennen',
|
|
examples: ['Queen - Bohemian Rhapsody', 'Daft Punk ft. Pharrell - Get Lucky'],
|
|
color: 'primary',
|
|
},
|
|
{
|
|
pattern: '(Album)',
|
|
description: 'Album in Klammern',
|
|
examples: ['Queen - Song (A Night at the Opera)'],
|
|
color: 'accent',
|
|
},
|
|
{
|
|
pattern: '#genre',
|
|
description: 'Genre als Tag',
|
|
examples: ['#rock', '#electronic', '#jazz'],
|
|
color: 'primary',
|
|
},
|
|
{
|
|
pattern: 'BPM',
|
|
description: 'Tempo in BPM',
|
|
examples: ['120bpm', '90 BPM'],
|
|
color: 'warning',
|
|
},
|
|
{
|
|
pattern: 'Neue Playlist',
|
|
description: 'Playlist erstellen',
|
|
examples: ['Neue Playlist Workout', 'Playlist Chill'],
|
|
color: 'success',
|
|
},
|
|
{
|
|
pattern: 'Neues Projekt',
|
|
description: 'Editor-Projekt erstellen',
|
|
examples: ['Neues Projekt Demo', 'Projekt Remix'],
|
|
color: 'success',
|
|
},
|
|
],
|
|
},
|
|
];
|