Skip to content

Commit 6841fe5

Browse files
committed
fix(dotprompt-emacs): remove internal markup from end-user features
1 parent bb87a74 commit 6841fe5

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

packages/emacs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Provides a major mode for editing Dotprompt (`.prompt`) files with syntax highli
44

55
## Features
66

7-
- **Syntax Highlighting**: Handlebars helpers, partials, Dotprompt markers
7+
- **Syntax Highlighting**: Handlebars helpers, partials
88
- **LSP Integration**: Diagnostics, formatting, hover via eglot or lsp-mode
99
- **Format Buffer**: `C-c C-f` or `M-x dotprompt-format-buffer`
1010
- **Format on Save**: Optional automatic formatting

packages/emacs/dotprompt-mode.el

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
;;; Commentary:
2424

2525
;; Major mode for editing Dotprompt files (.prompt).
26-
;; Provides syntax highlighting for markers, helpers, and partials.
26+
;; Provides syntax highlighting for helpers and partials.
2727
;; Includes LSP integration via eglot or lsp-mode for diagnostics,
2828
;; formatting, and hover documentation when `promptly` is installed.
2929
;;
@@ -69,9 +69,6 @@
6969
;; YAML numeric values
7070
'(":\\s-+\\([0-9]+\\.?[0-9]*\\)$" 1 font-lock-constant-face)
7171

72-
;; Dotprompt markers <<<dotprompt:role:system>>> etc.
73-
'("<<<dotprompt:[^>]+>>>" . font-lock-preprocessor-face)
74-
7572
;; Handlebars block comments {{!-- ... --}}
7673
'("{{!--\\(.\\|\n\\)*?--}}" . font-lock-comment-face)
7774

0 commit comments

Comments
 (0)